comparison client/src/components/Sidebar.vue @ 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 9f1b84b712a8
children 9c1dfadb53aa
comparison
equal deleted inserted replaced
276:863ec6010045 277:807efc83e507
128 128
129 .user { 129 .user {
130 margin-top: auto; 130 margin-top: auto;
131 } 131 }
132 .sidebar { 132 .sidebar {
133 position: absolute;
134 z-index: 1;
133 background-color: #ffffff; 135 background-color: #ffffff;
134 padding-top: $large-offset; 136 padding-top: $large-offset;
135 height: 100vh; 137 height: 100vh;
136 } 138 }
137 139