.#{$namespace}shortcutMenu { /* Save root element context for easy access if nesting is needed */ $self: &; /* variables specific to current element */ $element-specific-variables: ""; /* properties of current element + media queries */ padding: map-deep-get($token-spacer-unit-map, "16"); /* 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 */ // shortcutMenu__childElement &__box { padding: map-deep-get($token-spacer-unit-map, "16"); background-color: map-deep-get($token-color-brand-map, "secondary", "06"); border-radius: map-deep-get($token-radius-map, "8"); } /* modifiers */ // shortcutMenu -altStyle &.-altStyle { // follows same logic as base element } /* random parent element */ /* * * Syntax : .randomParentElt & {} * */ /* Pseudo Classes */ &:hover { @media (hover: hover) { } } &:focus { } &:active { } &:focus, &:active { } }