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 {
|
2022-07-26 12:05:57 +00:00
|
|
|
// we turn off overflow on the settings page as it seems to mess with our
|
|
|
|
// header and navigation
|
|
|
|
overflow: visible;
|
|
|
|
|
2021-03-08 16:48:29 +00:00
|
|
|
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
|
2022-07-26 12:05:57 +00:00
|
|
|
&::before {
|
|
|
|
content: "";
|
|
|
|
width: 100%;
|
|
|
|
height: $pad-xxlarge;
|
|
|
|
position: absolute;
|
|
|
|
top: -$pad-xxlarge;
|
|
|
|
background-color: $core-white;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// These styles are here to make the sticky header and nav work correctly
|
|
|
|
// with the sandbox mode expiry message.
|
|
|
|
&.sandbox-mode {
|
|
|
|
h1 {
|
|
|
|
&::before {
|
|
|
|
height: 0;
|
|
|
|
top: 0;
|
|
|
|
}
|
2021-10-19 18:13:18 +00:00
|
|
|
}
|
2021-03-08 16:48:29 +00:00
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|