Files

36 lines
597 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;
}
&--multiline dd {
white-space: pre-wrap;
overflow: visible;
overflow-wrap: anywhere;
}
&__horizontal {
flex-direction: row;
}
}