mirror of
https://github.com/fleetdm/fleet
synced 2026-05-06 14:58:33 +00:00
23 lines
325 B
SCSS
23 lines
325 B
SCSS
.data-set {
|
|
display: flex;
|
|
flex-direction: column;
|
|
font-size: $x-small;
|
|
gap: $pad-xsmall;
|
|
|
|
&__horizontal {
|
|
display: flex;
|
|
gap: $pad-small;
|
|
}
|
|
|
|
dt {
|
|
font-weight: $bold;
|
|
display: flex;
|
|
}
|
|
|
|
dd {
|
|
display: flex;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
}
|