Back to home page

EIC code displayed by LXR

 
 

    


Warning, /iDDS/monitor/data/scss/bootstrap/helpers/_position.scss is written in an unsupported language. File is not indexed.

0001 // Shorthand
0002 
0003 .fixed-top {
0004   position: fixed;
0005   top: 0;
0006   right: 0;
0007   left: 0;
0008   z-index: $zindex-fixed;
0009 }
0010 
0011 .fixed-bottom {
0012   position: fixed;
0013   right: 0;
0014   bottom: 0;
0015   left: 0;
0016   z-index: $zindex-fixed;
0017 }
0018 
0019 // Responsive sticky top
0020 @each $breakpoint in map-keys($grid-breakpoints) {
0021   @include media-breakpoint-up($breakpoint) {
0022     $infix: breakpoint-infix($breakpoint, $grid-breakpoints);
0023 
0024     .sticky#{$infix}-top {
0025       position: sticky;
0026       top: 0;
0027       z-index: $zindex-sticky;
0028     }
0029   }
0030 }