maputnik/src/styles/_layout.scss

49 lines
892 B
SCSS
Raw Normal View History

2017-01-11 09:35:48 +01:00
//SCROLLING
.maputnik-scroll-container {
2018-07-15 14:17:47 +02:00
overflow-x: hidden;
2017-01-11 09:35:48 +01:00
overflow-y: scroll;
2017-01-12 11:23:06 +01:00
bottom: 0;
left: 0;
right: 0;
2017-01-11 09:35:48 +01:00
top: 1px;
position: absolute;
}
//APP LAYOUT
.maputnik-layout {
font-family: $font-family;
color: $color-white;
2017-01-11 15:59:51 +01:00
&-list {
position: fixed;
2017-01-12 11:23:06 +01:00
bottom: 0;
height: calc(100% - #{$toolbar-height + $toolbar-offset});
top: $toolbar-height + $toolbar-offset;
2017-01-12 11:23:06 +01:00
left: 0;
2017-01-11 15:59:51 +01:00
z-index: 3;
width: 200px;
background-color: $color-black;
}
2017-01-12 11:23:06 +01:00
2017-01-11 15:59:51 +01:00
&-drawer {
position: fixed;
2017-01-12 11:23:06 +01:00
bottom: 0;
height: calc(100% - #{$toolbar-height + $toolbar-offset});
top: $toolbar-height + $toolbar-offset;
2017-01-11 15:59:51 +01:00
left: 200px;
z-index: 1;
width: 350px;
background-color: $color-black;
}
2017-01-12 11:23:06 +01:00
2017-01-11 15:59:51 +01:00
&-bottom {
position: fixed;
height: 50px;
2017-01-12 11:23:06 +01:00
bottom: 0;
2017-01-11 15:59:51 +01:00
left: 550px;
z-index: 1;
width: 100%;
background-color: $color-black;
}
2017-01-11 09:35:48 +01:00
}