fleet/frontend/components/DataSet/_styles.scss
2026-05-05 08:50:18 -04:00

29 lines
493 B
SCSS

.data-set {
display: flex;
flex-direction: column;
font-size: $x-small;
gap: $pad-xsmall;
dt {
font-weight: $bold;
display: flex;
align-items: baseline; // Aligns titles with and without tooltips
color: $core-fleet-black;
line-height: $line-height;
}
dd {
display: flex;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
&--text-only dd {
align-items: baseline;
}
&__horizontal {
flex-direction: row;
}
}