Configurable toolbar top offset.

For facilitate embeding in other apps.
This commit is contained in:
Alberto Valverde
2017-01-26 20:40:53 +01:00
parent 5c286f8d96
commit 32b18e9141
4 changed files with 8 additions and 7 deletions
+2 -2
View File
@@ -1,10 +1,10 @@
// MAP
.maputnik-map {
position: fixed !important;
top: 40px;
top: $toolbar-height + $toolbar-offset;
right: 0;
bottom: 0;
height: calc(100% - $toolbar-height);
height: calc(100% - #{$toolbar-height + $toolbar-offset});
width: 75%;
}