mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
23 lines
398 B
SCSS
23 lines
398 B
SCSS
.status-indicator-with-icon {
|
|
// default layout is horizontal
|
|
&__value {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
vertical-align: middle;
|
|
gap: $gap-icon-text;
|
|
|
|
span {
|
|
white-space: nowrap;
|
|
}
|
|
}
|
|
|
|
// overrides for different layout
|
|
&__value-vertical {
|
|
flex-direction: column;
|
|
gap: $pad-xsmall;
|
|
}
|
|
|
|
.indicator-tip-text {
|
|
text-align: center;
|
|
}
|
|
}
|