# HG changeset patch # User Thomas Junk # Date 1536761465 -7200 # Node ID 855cca0142ec9a57235ce7ee403a350a2c67b0e5 # Parent 8278b2fb0c3345e78edda7d4970eadeee500b4b3 refac: Usermanagement now flexible sidebar layout In order to prevent overlapping of sidebar and content a spacer is for a small viewport width added and collapsed accordingly to the sidebar. diff -r 8278b2fb0c33 -r 855cca0142ec client/src/application/Sidebar.vue --- a/client/src/application/Sidebar.vue Wed Sep 12 12:23:11 2018 +0200 +++ b/client/src/application/Sidebar.vue Wed Sep 12 16:11:05 2018 +0200 @@ -59,7 +59,7 @@ } .menu { - padding-top: 5vh; + padding-top: $small-offset; } .sidebar { @@ -83,7 +83,7 @@ } .sidebarextended { - height: 400px; - width: 215px; + height: $sidebar-height; + width: $sidebar-width; } diff -r 8278b2fb0c33 -r 855cca0142ec client/src/application/Topbar.vue --- a/client/src/application/Topbar.vue Wed Sep 12 12:23:11 2018 +0200 +++ b/client/src/application/Topbar.vue Wed Sep 12 16:11:05 2018 +0200 @@ -11,7 +11,7 @@ -
+
diff -r 8278b2fb0c33 -r 855cca0142ec client/src/application/User.vue --- a/client/src/application/User.vue Wed Sep 12 12:23:11 2018 +0200 +++ b/client/src/application/User.vue Wed Sep 12 16:11:05 2018 +0200 @@ -1,6 +1,6 @@