# HG changeset patch # User Thomas Junk # Date 1532950295 -7200 # Node ID 807efc83e50766765d6a37b0b8cfe8cc364863a2 # Parent 863ec6010045948a4f0b2abb7145ac75cb0bcfec 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. diff -r 863ec6010045 -r 807efc83e507 client/src/components/Sidebar.vue --- 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;