mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
18 lines
422 B
SCSS
18 lines
422 B
SCSS
.setup-script-status-cell {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: $gap-icon-text;
|
|
font-size: $x-small; // Already applied but on component level for storybook
|
|
|
|
&__icon {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: $pad-medium;
|
|
height: $pad-medium;
|
|
}
|
|
|
|
&__label {
|
|
min-width: 14ch; // 14 characters — Prevents jitter, fits longest label ("Installing")
|
|
}
|
|
}
|