fleet/frontend/layouts/CoreLayout/_styles.scss

38 lines
602 B
SCSS
Raw Normal View History

.app-wrap {
display: flex;
min-height: 100vh;
}
.core-wrapper {
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 {
2018-09-18 21:14:13 +00:00
background-color: #f4f7fb;
border-right: 1px solid $border-medium;
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;
}
}