mirror of
https://github.com/fleetdm/fleet
synced 2026-05-15 13:08:42 +00:00
23 lines
432 B
SCSS
23 lines
432 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-vibrant-blue;
|
|
border-radius: 29px;
|
|
color: $core-white;
|
|
font-weight: $bold;
|
|
font-size: $xx-small;
|
|
|
|
&--error {
|
|
background-color: $core-vibrant-red;
|
|
}
|
|
}
|
|
}
|