From 7ed3b849e0116d43aea7fea4a8b3ac77a605ee9c Mon Sep 17 00:00:00 2001 From: Edward Betts Date: Sat, 8 May 2021 10:42:40 +0200 Subject: [PATCH] Shrink map so sidebar isn't on top --- static/css/map.css | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/static/css/map.css b/static/css/map.css index 86d6b62..e80887b 100644 --- a/static/css/map.css +++ b/static/css/map.css @@ -2,8 +2,8 @@ position: absolute; top: 0px; bottom: 0px; - left: 0px; - right: 0px; + left: 25%; + width: 75%; z-index: -1; } @@ -26,8 +26,10 @@ #sidebar { position: absolute; - top: 20px; - left: 20px; - bottom: 20px; + background: #eee; + top: 0px; + left: 0px; + bottom: 0px; overflow: auto; + width: 25%; }