fleet/frontend/layouts/CoreLayout/_styles.scss

52 lines
807 B
SCSS
Raw Normal View History

.app-wrap {
display: flex;
flex-direction: column;
min-height: 100vh;
background-color: $ui-off-white;
}
.core-wrapper {
flex-grow: 1;
margin: 0;
padding: 0;
2017-01-05 18:08:19 +00:00
position: relative;
background-color: $core-white;
display: flex;
2022-09-28 01:05:12 +00:00
// App hidden below 768px
@media (max-width: $break-xs - 1px) {
2022-08-03 13:12:07 +00:00
display: none;
}
2022-09-28 01:05:12 +00:00
// App not hidden when printing
@media print {
display: initial;
}
a {
img {
height: 12px;
width: 12px;
margin-left: $pad-xsmall;
}
}
}
.site-nav-container {
background: $core-fleet-black;
box-sizing: border-box;
top: 0;
left: 0;
z-index: 100;
2022-09-28 01:05:12 +00:00
// Nav hidden below 768px;
@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
}