mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 21:47:20 +00:00
31 lines
457 B
SCSS
31 lines
457 B
SCSS
.section-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
|
|
&__left-header {
|
|
display: flex;
|
|
align-items: baseline;
|
|
gap: $pad-small;
|
|
|
|
&--vertical {
|
|
flex-direction: column;
|
|
}
|
|
}
|
|
|
|
&__sub-title {
|
|
&--grey {
|
|
font-size: $x-small;
|
|
@include grey-text;
|
|
}
|
|
}
|
|
|
|
h2 {
|
|
font-size: $medium;
|
|
width: 100%;
|
|
}
|
|
|
|
// GOAL: rely on gap instead of these bottom margins
|
|
&__no-margin {
|
|
margin: 0;
|
|
}
|
|
}
|