fleet/frontend/components/DataSet/_styles.scss

26 lines
411 B
SCSS
Raw Normal View History

.data-set {
font-size: $x-small;
min-width: max-content;
// ff only
@-moz-document url-prefix() {
display: flex;
flex-direction: column;
gap: 6px;
}
dt {
font-weight: $bold;
display: flex;
gap: $pad-xsmall; // For deprecated sandbox icons
}
dd {
display: flex;
gap: $pad-small;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
}