No notes defined.
<div class="sds-avatarText">
<span class="sds-numberCircle -xl -info100">
<h2>BA</h2>
</span>
<div class="sds-avatarText__content">
<div class="h2">Business Analyst</div>
</div>
</div>
<div class="{{ namespace }}avatarText{% for mod in modifiers %} {{ mod }}{% endfor %}{% for mod in classes %} {{ mod }}{% endfor %}">
{% render "@snet-number-circle",numberCircleOptions,true %}
<div class="{{ namespace }}avatarText__content">
<div class="h2">{{ text }}</div>
</div>
</div>
/* variables specific to current element */
$element-specific-variables: "";
.#{$namespace}avatarText {
/* Save root element context for easy access if nesting is needed */
$self: &;
/* properties of current element + media queries */
/* Pseudo Elements */
&::before {
}
&::after {
}
/*
Include elements that are linked to the current element but have to reside at the root level of the stylesheet
(e.g: keyframes)
*/
@at-root {
}
/* children - write selector in full in comments in order to facilitate search */
// avatarText__childElement
&__childElement {
// follows same logic as parent
}
/* modifiers */
// avatarText -locked
&.-locked {
// follows same logic as base element
color: map-deep-get($token-color-brand-map, "fade", "120");
* {
color: inherit;
}
&::after {
@include icon-base;
content: map-deep-get($token-icon-map, "locked");
font-size: 1.5em;
margin-left: map-deep-get($token-spacer-inline-map, "md");
color: inherit;
}
}
/* random parent element */
/*
*
* Syntax : .randomParentElt & {}
*
*/
/* Pseudo Classes */
&:hover {
@media (hover: hover) {
}
}
&:focus {
}
&:active {
}
&:focus,
&:active {
}
}