mirror of
https://github.com/empayre/fleet.git
synced 2024-11-08 09:43:51 +00:00
5be54a72cf
* added global teams dropdown * added teams dropdown * created tabs wrapper component * comment out software table for now * lint fixes * added changes file * removed test data * fixed permissions * fixed scroll behavior for test with sticky header * lint fixes
28 lines
502 B
SCSS
28 lines
502 B
SCSS
@import "../../../../node_modules/react-tabs/style/react-tabs.scss";
|
|
|
|
.settings-wrapper {
|
|
h1 {
|
|
margin-bottom: $pad-small;
|
|
position: relative;
|
|
|
|
// fake padding for h1 while sticky
|
|
&::before {
|
|
content: '';
|
|
width: 100%;
|
|
height: $pad-xxlarge;
|
|
position: absolute;
|
|
top: -$pad-xxlarge;
|
|
background-color: $core-white;
|
|
}
|
|
}
|
|
|
|
.app-settings {
|
|
padding: 0;
|
|
}
|
|
|
|
.component__tabs-wrapper {
|
|
top: $pad-xxlarge; // for sticky
|
|
z-index: 3;
|
|
}
|
|
}
|