_align.scss
3 years ago
_background.scss
3 years ago
_borders.scss
3 years ago
_clearfix.scss
3 years ago
_display.scss
3 years ago
_embed.scss
3 years ago
_flex.scss
3 years ago
_float.scss
3 years ago
_interactions.scss
3 years ago
_overflow.scss
3 years ago
_position.scss
3 years ago
_screenreaders.scss
3 years ago
_shadows.scss
3 years ago
_sizing.scss
3 years ago
_spacing.scss
3 years ago
_stretched-link.scss
3 years ago
_text.scss
3 years ago
_visibility.scss
3 years ago
_position.scss
33 lines
| 1 | // stylelint-disable declaration-no-important |
| 2 | |
| 3 | // Common values |
| 4 | @each $position in $positions { |
| 5 | .position-#{$position} { position: $position !important; } |
| 6 | } |
| 7 | |
| 8 | // Shorthand |
| 9 | |
| 10 | .fixed-top { |
| 11 | position: fixed; |
| 12 | top: 0; |
| 13 | right: 0; |
| 14 | left: 0; |
| 15 | z-index: $zindex-fixed; |
| 16 | } |
| 17 | |
| 18 | .fixed-bottom { |
| 19 | position: fixed; |
| 20 | right: 0; |
| 21 | bottom: 0; |
| 22 | left: 0; |
| 23 | z-index: $zindex-fixed; |
| 24 | } |
| 25 | |
| 26 | .sticky-top { |
| 27 | @supports (position: sticky) { |
| 28 | position: sticky; |
| 29 | top: 0; |
| 30 | z-index: $zindex-sticky; |
| 31 | } |
| 32 | } |
| 33 |