mirror of
https://github.com/fleetdm/fleet
synced 2026-05-19 15:09:20 +00:00
remove unneeded header boarders on mdm pages. **before:**  **after:**  - [x] Manual QA for all new/changed functionality
22 lines
329 B
SCSS
22 lines
329 B
SCSS
.os-version-table {
|
|
.hosts-cell__wrapper {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.os-hosts-link {
|
|
opacity: 0;
|
|
transition: 250ms;
|
|
}
|
|
|
|
tr:hover {
|
|
.os-hosts-link {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.data-table-block th:nth-last-child(2) {
|
|
border-right: none;
|
|
}
|
|
}
|