fleet/frontend/layouts/CoreLayout/_styles.scss

39 lines
690 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: 0 0 0 $pad-base;
max-width: calc(100% - 258px);
2017-01-05 18:08:19 +00:00
position: relative;
2017-02-24 23:01:43 +00:00
&--small {
max-width: calc(100% - 73px);
}
@include breakpoint(smalldesk) {
max-width: calc(100% - 73px);
}
}
.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;
2017-01-09 23:13:52 +00:00
width: $nav-width;
2017-02-24 23:01:43 +00:00
&--small {
padding-left: 0;
width: $nav-tablet-width;
}
2016-12-21 18:39:40 +00:00
@include breakpoint(smalldesk) {
padding-left: 0;
2017-01-09 23:13:52 +00:00
width: $nav-tablet-width;
}
}