mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
19 lines
502 B
SCSS
19 lines
502 B
SCSS
@import "../../../node_modules/react-tabs/style/react-tabs.scss";
|
|
|
|
.admin-wrapper {
|
|
// we turn off overflow on the settings page as it seems to mess with our
|
|
// header and navigation
|
|
overflow: visible;
|
|
@include vertical-page-layout;
|
|
|
|
.side-nav__card-container {
|
|
// all side navs in the admin section we want to limit the max width
|
|
> *:not(.loading-spinner) {
|
|
width: 100%;
|
|
max-width: $settings-form-max-width;
|
|
}
|
|
}
|
|
.side-nav__nav-list {
|
|
position: initial;
|
|
}
|
|
}
|