2017-08-08 01:36:57 -04:00
|
|
|
// Shorthand
|
2017-01-02 14:45:30 -05:00
|
|
|
|
|
|
|
.fixed-top {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
left: 0;
|
|
|
|
z-index: $zindex-fixed;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fixed-bottom {
|
|
|
|
position: fixed;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
z-index: $zindex-fixed;
|
|
|
|
}
|
|
|
|
|
2021-12-16 03:27:00 -05:00
|
|
|
// Responsive sticky top and bottom
|
2020-04-18 08:10:18 -04:00
|
|
|
@each $breakpoint in map-keys($grid-breakpoints) {
|
|
|
|
@include media-breakpoint-up($breakpoint) {
|
|
|
|
$infix: breakpoint-infix($breakpoint, $grid-breakpoints);
|
2019-09-13 14:15:20 -04:00
|
|
|
|
2020-04-18 08:10:18 -04:00
|
|
|
.sticky#{$infix}-top {
|
|
|
|
position: sticky;
|
|
|
|
top: 0;
|
|
|
|
z-index: $zindex-sticky;
|
2019-09-13 14:15:20 -04:00
|
|
|
}
|
2021-12-16 03:27:00 -05:00
|
|
|
|
|
|
|
.sticky#{$infix}-bottom {
|
|
|
|
position: sticky;
|
|
|
|
bottom: 0;
|
|
|
|
z-index: $zindex-sticky;
|
|
|
|
}
|
2017-06-17 13:14:45 -04:00
|
|
|
}
|
2017-01-02 14:45:30 -05:00
|
|
|
}
|