mirror of
https://github.com/fleetdm/fleet
synced 2026-05-06 14:58:33 +00:00
29 lines
440 B
SCSS
29 lines
440 B
SCSS
.section-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin-bottom: $pad-xlarge;
|
|
|
|
&__left-header {
|
|
display: flex;
|
|
align-items: baseline;
|
|
gap: $pad-small;
|
|
|
|
&--vertical {
|
|
flex-direction: column;
|
|
}
|
|
}
|
|
|
|
&__sub-title {
|
|
&--grey {
|
|
@include grey-text;
|
|
}
|
|
}
|
|
|
|
h2 {
|
|
margin: 0;
|
|
font-weight: $regular;
|
|
font-size: $medium;
|
|
width: 100%;
|
|
color: $core-fleet-black;
|
|
}
|
|
}
|