mirror of
https://github.com/fleetdm/fleet
synced 2026-05-14 12:38:41 +00:00
31 lines
595 B
SCSS
31 lines
595 B
SCSS
.data-set {
|
|
font-size: $x-small;
|
|
|
|
&__horizontal {
|
|
display: flex;
|
|
gap: $pad-small;
|
|
}
|
|
|
|
// 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
|
|
// white-space: nowrap; // Future-proofing: Prevents unexpected wrapping,
|
|
// consider uncommenting and testing if layout issues resurface.
|
|
}
|
|
|
|
dd {
|
|
display: flex;
|
|
gap: $pad-small;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
}
|