/* variables specific to current element */ $element-specific-variables: ""; .#{$namespace}simulatorResultCard { /* Save root element context for easy access if nesting is needed */ $self: &; /* properties of current element + media queries */ border-radius: map-deep-get($token-radius-map, "16"); @include spacer-component-inset("md"); transition: background-color 0.25s ease-in-out; /* 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 */ // simulatorResultCard__header &__header { // follows same logic as parent margin-bottom: map-deep-get($token-spacer-stack-max-map, "xs"); @include media-breakpoint-up(lg) { display: flex; align-items: center; justify-content: space-between; @include spacer-component-inline("md") } } /* modifiers */ // simulatorResultCard -altStyle &.-altStyle { // follows same logic as base element } /* random parent element */ /* * * Syntax : .randomParentElt & {} * */ /* Pseudo Classes */ &:hover { @media (hover: hover) { } } &:focus { } &:active { } &:focus, &:active { } }