/* variables specific to current element */ $element-specific-variables: ""; .#{$namespace}tableRecap { /* Save root element context for easy access if nesting is needed */ $self: &; /* properties of current element + media queries */ @include spacer-component-inset("md"); border-radius: map-deep-get($token-radius-map, "16"); @include custom-prop-fallback("background-color","sys-color-elevation-surface-sunken"); /* 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 */ // tableRecap__childElement &__amount { // follows same logic as parent font-weight: map-deep-get($token-font-weight-map, "bold"); } &__subtitle { @include custom-prop-fallback("color","sys-color-text-primary-vivid"); font-weight: map-deep-get($token-font-weight-map, "semi-bold"); } /* modifiers */ // tableRecap -altStyle &.-altStyle { // follows same logic as base element } /* random parent element */ /* * * Syntax : .randomParentElt & {} * */ /* Pseudo Classes */ &:hover { @media (hover: hover) { } } &:focus { } &:active { } &:focus, &:active { } }