mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
relates to #16046 updates to various UI changes for the controls page. includes: - changes to header styles, - changing layout of the os updates - remove accordion and add tabs for os update targets - various style fixes - [x] Changes file added for user-visible changes in `changes/` or `orbit/changes/`. - [x] Manual QA for all new/changed functionality
23 lines
518 B
SCSS
23 lines
518 B
SCSS
.side-nav {
|
|
&__container {
|
|
display: flex;
|
|
}
|
|
|
|
&__nav-list {
|
|
position: -webkit-sticky;
|
|
position: sticky;
|
|
// this is the spacing needed to make the sticky form nav position correctly when scrolling
|
|
// TODO: find a way to calculate these sticky positions this and use variables.
|
|
// will be tedious to update otherwise.
|
|
top: 217px;
|
|
width: 178px;
|
|
margin: 0;
|
|
padding: 0 110px 0 0;
|
|
list-style: none;
|
|
font-size: $x-small;
|
|
}
|
|
|
|
&__card-container {
|
|
width: 100%;
|
|
}
|
|
}
|