Map widgets should be hidden when browser window has small size #1009

This commit is contained in:
piotrpekala7 2020-11-08 00:00:57 +01:00
parent 72371cb8d6
commit 165ab06fde
2 changed files with 12 additions and 0 deletions

View File

@ -1,3 +1,9 @@
@media screen and (max-width: 700px) {
.consoleWrapper {
visibility: hidden;
}
}
.consoleWrapper {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
position: fixed;

View File

@ -1,3 +1,9 @@
@media screen and (max-width: 600px) {
.summaryWrapper {
visibility: hidden;
}
}
.summaryWrapper {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
position: fixed;