fleet/frontend/components/StatusIndicatorWithIcon/_styles.scss
Marcos Oviedo f0d77ab3db
Merging Bitlocker feature branch (#14350)
This relates to #12577

---------

Co-authored-by: gillespi314 <73313222+gillespi314@users.noreply.github.com>
Co-authored-by: Roberto Dip <dip.jesusr@gmail.com>
2023-10-06 19:04:33 -03:00

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;
}
}