.#{$namespace}scheduleOverview { /* 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 */ /* 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 */ &__header { padding-bottom: map-deep-get($token-spacer-inset-map, "xs"); } &__nav { @include spacer-component-inline(lg); position: relative; z-index: z("medium"); padding: map-deep-get($token-spacer-inset-map, "md"); border-radius: map-deep-get($token-radius-map, "16"); } &__innerNav { flex-grow: 1; @include spacer-component-inline(xxl); } &__body { overflow-x: auto; overflow-y: hidden; @include spacer-component-inline(sm); position: relative; z-index: z("low"); margin-left: -(map-deep-get($token-spacer-inline-map, "md")); margin-right: -(map-deep-get($token-spacer-inline-map, "md")); padding-top: map-deep-get(map-deep-get($token-spacer-unit-map, "48")); padding-left: map-deep-get($token-spacer-inline-map, "lg"); padding-right: map-deep-get($token-spacer-inline-map, "lg"); margin-top: -(map-deep-get($token-spacer-unit-map, "24")) !important; @include media-breakpoint-up(lg){ margin-left: -(map-deep-get($token-spacer-inline-map, "lg")); margin-right: -(map-deep-get($token-spacer-inline-map, "lg")); } } /* modifiers */ // scheduleOverview -altStyle &.-altStyle { // follows same logic as base element } /* random parent element */ /* * * Syntax : .randomParentElt & {} * */ /* Pseudo Classes */ &:hover { @media (hover: hover) { } } &:focus { } &:active { } &:focus, &:active { } }