* start with making nav horizontal and updating nav and main content areas * remove unneded subnav styling and JS code * remove unused isSmallNav and --small styles * remove isSmallNav in reducer and fix tests * change 'admin' to 'settings' * remove unnneded username to logo * change account page urls * Add user avatar dropdown to nav * remove unused background colour on company logo * get tabbing to work correctly * implement styling of tab and page descriptions * change default settings nav to organisation settings * remove more unneeded subnav code * fix some broken tests after changes * pull out getdefaultTabIndex in settingsWrapper * sticky sub nav for settings pages * tweak zindex for setting subnav * updated yarn.lock * update icons * fix collapsing nav items * tweak avatar dropdown styles * remove sidebar on osquery page
23 lines
315 B
SCSS
23 lines
315 B
SCSS
.app-wrap {
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
.core-wrapper {
|
|
flex-grow: 1;
|
|
margin: 0;
|
|
padding: 0;
|
|
position: relative;
|
|
background-color: $white;
|
|
}
|
|
|
|
.site-nav {
|
|
background: $core-gradient;
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: 100;
|
|
}
|