mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 21:47:20 +00:00
35 lines
660 B
SCSS
35 lines
660 B
SCSS
.tab-text {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: $pad-small;
|
|
align-items: center;
|
|
height: 21px;
|
|
|
|
&__count {
|
|
display: flex;
|
|
padding: 1px 12px;
|
|
justify-content: center;
|
|
align-items: center;
|
|
background-color: $core-fleet-green;
|
|
border-radius: 29px;
|
|
color: $core-fleet-white;
|
|
font-weight: $bold;
|
|
font-size: $xx-small;
|
|
|
|
&__alert {
|
|
background-color: $core-vibrant-red;
|
|
}
|
|
&__pending {
|
|
background-color: $ui-fleet-black-50;
|
|
}
|
|
}
|
|
|
|
&__dot {
|
|
display: inline-block;
|
|
width: 8px;
|
|
height: 8px;
|
|
min-width: 8px;
|
|
border-radius: 100%;
|
|
background-color: $ui-success;
|
|
}
|
|
}
|