2016-12-06 16:55:48 +00:00
|
|
|
.app-wrap {
|
2019-01-03 20:46:55 +00:00
|
|
|
display: flex;
|
2021-03-08 16:48:29 +00:00
|
|
|
flex-direction: column;
|
2020-11-23 19:22:42 +00:00
|
|
|
min-height: 100vh;
|
2023-04-11 19:25:15 +00:00
|
|
|
background-color: $ui-off-white;
|
2016-12-06 16:55:48 +00:00
|
|
|
}
|
|
|
|
|
|
2016-11-03 19:40:54 +00:00
|
|
|
.core-wrapper {
|
2019-01-03 20:46:55 +00:00
|
|
|
flex-grow: 1;
|
2016-12-06 16:55:48 +00:00
|
|
|
margin: 0;
|
2020-12-07 23:08:59 +00:00
|
|
|
padding: 0;
|
2017-01-05 18:08:19 +00:00
|
|
|
position: relative;
|
2021-04-30 21:32:50 +00:00
|
|
|
background-color: $core-white;
|
2021-03-26 00:22:37 +00:00
|
|
|
display: flex;
|
2022-09-02 19:28:42 +00:00
|
|
|
|
2022-09-28 01:05:12 +00:00
|
|
|
// App hidden below 768px
|
2023-07-12 22:45:49 +00:00
|
|
|
@media (max-width: $break-xs - 1px) {
|
2022-08-03 13:12:07 +00:00
|
|
|
display: none;
|
|
|
|
|
}
|
2022-09-02 19:28:42 +00:00
|
|
|
|
2022-09-28 01:05:12 +00:00
|
|
|
// App not hidden when printing
|
|
|
|
|
@media print {
|
|
|
|
|
display: initial;
|
|
|
|
|
}
|
|
|
|
|
|
2022-09-02 19:28:42 +00:00
|
|
|
a {
|
|
|
|
|
img {
|
|
|
|
|
height: 12px;
|
|
|
|
|
width: 12px;
|
|
|
|
|
margin-left: $pad-xsmall;
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-12-06 16:55:48 +00:00
|
|
|
}
|
|
|
|
|
|
2023-01-26 19:33:54 +00:00
|
|
|
.site-nav-container {
|
|
|
|
|
background: $core-fleet-black;
|
2016-12-06 16:55:48 +00:00
|
|
|
box-sizing: border-box;
|
2020-11-30 17:07:44 +00:00
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
z-index: 100;
|
2022-09-28 01:05:12 +00:00
|
|
|
|
|
|
|
|
// Nav hidden below 768px;
|
2023-07-12 22:45:49 +00:00
|
|
|
@media (max-width: $break-xs - 1px) {
|
2022-08-03 13:12:07 +00:00
|
|
|
display: none;
|
|
|
|
|
}
|
2022-09-28 01:05:12 +00:00
|
|
|
|
|
|
|
|
// Nav not hidden when printing
|
|
|
|
|
@media print {
|
|
|
|
|
display: initial;
|
|
|
|
|
}
|
2022-08-03 13:12:07 +00:00
|
|
|
}
|