mirror of
https://github.com/nasa/openmct.git
synced 2025-01-03 20:04:09 +00:00
fa4cfc4961
WTD-894 Added scss file for fixed position styles; Mods in progress to fixed.html to remove inline styling and change grid method to background gradient approach;
28 lines
312 B
SCSS
28 lines
312 B
SCSS
.t-fixed-position {
|
|
&.l-fixed-position {
|
|
// @include test(red);
|
|
position: absolute;
|
|
top: 0; right: 2px; bottom: 2px; left: 0;
|
|
width: auto; height: auto;
|
|
|
|
.l-grid-cell {
|
|
$brd: 1px solid lighten($colorBodyBg, 5%);
|
|
position: absolute;
|
|
border-top: $brd;
|
|
border-left: $brd;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |