mirror of
https://github.com/fleetdm/fleet
synced 2026-05-11 19:19:03 +00:00
## Addresses #20363 <img width="1170" alt="Screenshot 2024-07-10 at 3 05 36 PM" src="https://github.com/fleetdm/fleet/assets/61553566/14a16330-e0fb-4a27-889d-dfe8dccb5d7b"> - [x] Changes file added for user-visible changes in `changes/`, - [x] Manual QA for all new/changed functionality --------- Co-authored-by: Jacob Shandling <jacob@fleetdm.com>
25 lines
411 B
SCSS
25 lines
411 B
SCSS
.data-set {
|
|
font-size: $x-small;
|
|
min-width: max-content;
|
|
|
|
// ff only
|
|
@-moz-document url-prefix() {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 6px;
|
|
}
|
|
|
|
dt {
|
|
font-weight: $bold;
|
|
display: flex;
|
|
gap: $pad-xsmall; // For deprecated sandbox icons
|
|
}
|
|
|
|
dd {
|
|
display: flex;
|
|
gap: $pad-small;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
}
|