changeset 277:807efc83e507

fix: Sidebar is now positioned above Map Having the map layer and the sidebar together in documentflow leads to ugly distortion of map after minimizing sidebar. In order to prevent such distortion, the sidebar is now positioned absolute. See issue 28.
author Thomas Junk <thomas.junk@intevation.de>
date Mon, 30 Jul 2018 13:31:35 +0200
parents 863ec6010045
children 9c1dfadb53aa d89a19c297e0
files client/src/components/Sidebar.vue
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/client/src/components/Sidebar.vue	Mon Jul 30 13:13:26 2018 +0200
+++ b/client/src/components/Sidebar.vue	Mon Jul 30 13:31:35 2018 +0200
@@ -130,6 +130,8 @@
   margin-top: auto;
 }
 .sidebar {
+  position: absolute;
+  z-index: 1;
   background-color: #ffffff;
   padding-top: $large-offset;
   height: 100vh;