fleet/frontend/components/DataSet/_styles.scss
jacobshandling dcb39dcbf1
UI – Make spacing between DataSet label and value on Firefox consistent with other browsers (#20366)
## Addresses #20363 

<img width="1170" alt="Screenshot 2024-07-10 at 3 05 36 PM"
src="https://github.com/fleetdm/fleet/assets/61553566/14a16330-e0fb-4a27-889d-dfe8dccb5d7b">

- [x] Changes file added for user-visible changes in `changes/`, 
- [x] Manual QA for all new/changed functionality

---------

Co-authored-by: Jacob Shandling <jacob@fleetdm.com>
2024-07-11 10:18:48 -07:00

25 lines
411 B
SCSS

.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;
}
}