mirror of
https://github.com/fleetdm/fleet
synced 2026-04-27 00:17:21 +00:00
20 lines
323 B
SCSS
20 lines
323 B
SCSS
.data-set {
|
|
display: flex;
|
|
flex-direction: column;
|
|
font-size: $x-small;
|
|
gap: $pad-xsmall;
|
|
|
|
dt {
|
|
font-weight: $bold;
|
|
display: flex;
|
|
color: $core-fleet-black;
|
|
line-height: $line-height;
|
|
}
|
|
|
|
dd {
|
|
display: flex;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
}
|