mirror of
https://github.com/fleetdm/fleet
synced 2026-05-16 05:28:38 +00:00
## Addresses #14752 ### (see issue for detailed list of features implemented)     - Also addresses #15140:  - Align host details > scripts > Status cells' icon alignments (see misaligned "pending" icon above):  ## Checklist for submitter - [x] Changes file added for user-visible changes in `changes/` - [x] Added/updated tests - [x] Manual QA for all new/changed functionality --------- Co-authored-by: Jacob Shandling <jacob@fleetdm.com>
32 lines
471 B
SCSS
32 lines
471 B
SCSS
.list-item {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
|
|
&__main-content {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: $pad-medium;
|
|
}
|
|
|
|
&__info {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: $pad-xsmall;
|
|
}
|
|
|
|
&__title {
|
|
font-size: $x-small;
|
|
font-weight: $bold;
|
|
}
|
|
|
|
&__details {
|
|
font-size: $xx-small;
|
|
}
|
|
|
|
&__actions {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
gap: $pad-medium;
|
|
}
|
|
}
|