Adding weather data

This commit is contained in:
2021-09-04 21:37:37 +02:00
parent 7800885e0b
commit 13bb9f2399
14 changed files with 218 additions and 27 deletions

View File

@@ -1,4 +1,7 @@
@media only screen and (max-width: 800px) {
$panel-width: "100% - 44px - 2 * #{$block-spacing}";
.desktop {
display: none;
}
@@ -11,7 +14,7 @@
}
.leaflet-right, .leaflet-left {
width: calc(100% - 44px - 2 * #{$block-spacing});
width: calc(#{$panel-width});
}
.leaflet-control-container .leaflet-bottom.leaflet-right {
@@ -27,15 +30,15 @@
}
#feed, #settings {
width: calc(100% - 44px - 2 * #{$block-spacing});
width: calc(#{$panel-width});
}
#feed {
right: calc((100% - 44px - 2 * #{$block-spacing}) * -1);
right: calc((#{$panel-width}) * -1);
}
#settings {
left: calc((100% - 44px - 2 * #{$block-spacing}) * -1);
left: calc((#{$panel-width}) * -1);
}
}
}