fleet/frontend/layouts/CoreLayout/_styles.scss

28 lines
481 B
SCSS
Raw Normal View History

.app-wrap {
@include display(flex);
min-height: calc(100vh - #{$footer-height});
}
.core-wrapper {
@include flex-grow(1);
margin: 0;
padding: $pad-base $pad-base 0;
&--show-panel {
margin-right: 300px;
}
}
.site-nav {
background-color: $white;
border-right: 1px solid $border-medium;
box-shadow: 2px 0 8px 0 rgba($black, 0.1);
box-sizing: border-box;
min-width: 240px;
2016-12-01 22:14:39 +00:00
@include breakpoint(tablet) {
padding-left: 0;
min-width: 55px;
}
}