fleet/frontend/components/SectionHeader/_styles.scss
2025-09-29 12:10:41 -05:00

34 lines
529 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 {
margin: 0;
font-weight: $regular;
font-size: $medium;
width: 100%;
color: $core-fleet-black;
}
// GOAL: rely on gap instead of these bottom margins
&__no-margin {
margin: 0;
}
}