/* variables specific to current element */ $element-specific-variables: ""; .#{$namespace}decisionHelp { /* Save root element context for easy access if nesting is needed */ $self: &; /* properties of current element + media queries */ //margin-bottom: -($scroll-to-nav-top-space-global); // needed to cancel out the padding bottom on the slider element /* 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 */ // decisionHelp__item &__item { // follows same logic as parent &[aria-pressed="true"] { @include custom-prop-fallback-box-shadow-color(0,0,0,$border-width*2, "comp-tile-active-border-color"); } } &__stepLabel { margin-bottom: map-deep-get($token-spacer-stack-max-map, "md"); } &__inner { margin-left: 0; } /* modifiers */ // decisionHelp -altStyle &.-altStyle { // follows same logic as base element } /* random parent element */ /* * * Syntax : .randomParentElt & {} * */ /* Pseudo Classes */ &:hover { @media (hover: hover) { } } &:focus { } &:active { } &:focus, &:active { } }