2021-04-12 13:32:25 +00:00
|
|
|
@import "../../../../node_modules/react-tabs/style/react-tabs.scss";
|
2021-03-08 16:48:29 +00:00
|
|
|
|
|
|
|
.settings-wrapper {
|
|
|
|
h1 {
|
2021-12-01 23:37:33 +00:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
height: 38px;
|
2021-10-19 18:13:18 +00:00
|
|
|
position: relative;
|
|
|
|
|
|
|
|
// fake padding for h1 while sticky
|
|
|
|
&::before {
|
2021-12-01 23:37:33 +00:00
|
|
|
content: "";
|
2021-10-19 18:13:18 +00:00
|
|
|
width: 100%;
|
|
|
|
height: $pad-xxlarge;
|
|
|
|
position: absolute;
|
|
|
|
top: -$pad-xxlarge;
|
|
|
|
background-color: $core-white;
|
|
|
|
}
|
2021-03-08 16:48:29 +00:00
|
|
|
}
|
|
|
|
|
2021-10-19 18:13:18 +00:00
|
|
|
.app-settings {
|
2021-03-08 16:48:29 +00:00
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2021-10-19 18:13:18 +00:00
|
|
|
.component__tabs-wrapper {
|
|
|
|
top: $pad-xxlarge; // for sticky
|
|
|
|
z-index: 3;
|
2021-03-08 16:48:29 +00:00
|
|
|
}
|
|
|
|
}
|