mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 21:47:20 +00:00
Implements #32247. This is the complete feature branch, consolidating: - https://github.com/fleetdm/fleet/pull/35018 - https://github.com/fleetdm/fleet/pull/34758 - https://github.com/fleetdm/fleet/pull/35009 - https://github.com/fleetdm/fleet/pull/35181 - https://github.com/fleetdm/fleet/pull/35342 --------- Co-authored-by: Jonathan Katz <44128041+jkatz01@users.noreply.github.com> Co-authored-by: RachelElysia <71795832+RachelElysia@users.noreply.github.com> Co-authored-by: Martin Angers <martin.n.angers@gmail.com> Co-authored-by: jkatz01 <yehonatankatz@gmail.com>
22 lines
328 B
SCSS
22 lines
328 B
SCSS
.card-header {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: $pad-small;
|
|
|
|
&--mobile-header {
|
|
gap: $pad-large;
|
|
}
|
|
|
|
&__header {
|
|
font-size: $medium;
|
|
font-weight: $bold;
|
|
margin: 0;
|
|
}
|
|
|
|
&__subheader {
|
|
color: $ui-fleet-black-75;
|
|
font-size: $x-small;
|
|
font-weight: $regular;
|
|
margin: 0;
|
|
}
|
|
}
|