mirror of
https://github.com/a-nyx/maputnik-with-pmtiles.git
synced 2025-01-01 00:43:15 +01:00
48 lines
892 B
SCSS
48 lines
892 B
SCSS
//SCROLLING
|
|
.maputnik-scroll-container {
|
|
overflow-x: hidden;
|
|
overflow-y: scroll;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
top: 1px;
|
|
position: absolute;
|
|
}
|
|
|
|
//APP LAYOUT
|
|
.maputnik-layout {
|
|
font-family: $font-family;
|
|
color: $color-white;
|
|
|
|
&-list {
|
|
position: fixed;
|
|
bottom: 0;
|
|
height: calc(100% - #{$toolbar-height + $toolbar-offset});
|
|
top: $toolbar-height + $toolbar-offset;
|
|
left: 0;
|
|
z-index: 3;
|
|
width: 200px;
|
|
background-color: $color-black;
|
|
}
|
|
|
|
&-drawer {
|
|
position: fixed;
|
|
bottom: 0;
|
|
height: calc(100% - #{$toolbar-height + $toolbar-offset});
|
|
top: $toolbar-height + $toolbar-offset;
|
|
left: 200px;
|
|
z-index: 1;
|
|
width: 350px;
|
|
background-color: $color-black;
|
|
}
|
|
|
|
&-bottom {
|
|
position: fixed;
|
|
height: 50px;
|
|
bottom: 0;
|
|
left: 550px;
|
|
z-index: 1;
|
|
width: 100%;
|
|
background-color: $color-black;
|
|
}
|
|
}
|