2024-02-08 16:56:32 +00:00
|
|
|
.data-set {
|
|
|
|
|
font-size: $x-small;
|
|
|
|
|
|
2025-02-21 11:52:41 +00:00
|
|
|
&__horizontal {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: $pad-small;
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-11 17:18:48 +00:00
|
|
|
// ff only
|
|
|
|
|
@-moz-document url-prefix() {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 6px;
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-08 16:56:32 +00:00
|
|
|
dt {
|
|
|
|
|
font-weight: $bold;
|
2024-03-04 20:47:42 +00:00
|
|
|
display: flex;
|
|
|
|
|
gap: $pad-xsmall; // For deprecated sandbox icons
|
2025-05-08 13:22:55 +00:00
|
|
|
// white-space: nowrap; // Future-proofing: Prevents unexpected wrapping,
|
|
|
|
|
// consider uncommenting and testing if layout issues resurface.
|
2024-03-04 20:47:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dd {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: $pad-small;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
2024-02-08 16:56:32 +00:00
|
|
|
}
|
|
|
|
|
}
|