UI – adjust disk encryption table style (#20981)

## #20395 

<img width="778" alt="Screenshot 2024-08-01 at 7 15 00 PM"
src="https://github.com/user-attachments/assets/26fc82c0-d3e9-4e0d-b27d-82be63711fa9">

- [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>
This commit is contained in:
jacobshandling 2024-08-02 08:24:10 -07:00 committed by GitHub
parent 4b2c8a6f02
commit 33fa8f2fe9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 26 additions and 6 deletions

View file

@ -0,0 +1 @@
* Fix a styling issue in the Controls > OS Settings > disk encryption table

View file

@ -12,6 +12,7 @@
&__side-nav {
.side-nav__nav-list {
top: 0;
padding-right: 40px;
}
}

View file

@ -9,11 +9,29 @@
border-right: none;
}
@media (max-width: 1120px) {
.view-hosts-link {
span {
display: none;
}
.linkToFilteredHosts__header {
width: auto;
max-width: 120px;
}
}
@media (max-width: 1120px) {
.view-hosts-link {
span {
display: none;
}
}
}
.linkToFilteredHosts {
&__header {
width: 0;
.column-header {
width: 0;
}
}
&__cell {
width: min-content;
}
}
}