mirror of
https://github.com/nasa/openmct.git
synced 2024-12-22 06:27:48 +00:00
18 lines
273 B
SCSS
18 lines
273 B
SCSS
|
/* Styles for sub-dividing views generically */
|
||
|
|
||
|
.l-view-section {
|
||
|
@include absPosDefault(0);
|
||
|
font-size: 0.8rem;
|
||
|
h2 {
|
||
|
color: #fff;
|
||
|
margin-bottom: $interiorMargin;
|
||
|
}
|
||
|
&.fixed {
|
||
|
font-size: 0.8em;
|
||
|
}
|
||
|
.controls,
|
||
|
label,
|
||
|
.inline-block {
|
||
|
display: inline-block;
|
||
|
}
|
||
|
}
|