fleet/frontend/pages/admin/_styles.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;
}
}