Shrink map so sidebar isn't on top

This commit is contained in:
Edward Betts 2021-05-08 10:42:40 +02:00
parent e3cefcfcbd
commit 7ed3b849e0
1 changed files with 7 additions and 5 deletions

View File

@ -2,8 +2,8 @@
position: absolute; position: absolute;
top: 0px; top: 0px;
bottom: 0px; bottom: 0px;
left: 0px; left: 25%;
right: 0px; width: 75%;
z-index: -1; z-index: -1;
} }
@ -26,8 +26,10 @@
#sidebar { #sidebar {
position: absolute; position: absolute;
top: 20px; background: #eee;
left: 20px; top: 0px;
bottom: 20px; left: 0px;
bottom: 0px;
overflow: auto; overflow: auto;
width: 25%;
} }