mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 21:47:20 +00:00
This relates to #12577 --------- Co-authored-by: gillespi314 <73313222+gillespi314@users.noreply.github.com> Co-authored-by: Roberto Dip <dip.jesusr@gmail.com>
18 lines
327 B
SCSS
18 lines
327 B
SCSS
.status-indicator-with-icon {
|
|
// default layout is horizontal
|
|
&__value {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
vertical-align: middle;
|
|
|
|
.icon {
|
|
margin-right: $pad-xsmall;
|
|
}
|
|
}
|
|
|
|
// overrides for different layout
|
|
&__value-vertical {
|
|
flex-direction: column;
|
|
gap: $pad-xsmall;
|
|
}
|
|
}
|