# HG changeset patch # User Markus Kottlaender # Date 1550566154 -3600 # Node ID a25b4988eb0c94bf07eda4ea8899b9d370558aae # Parent c00e3f7f5b178d0b0cb8af9d44661fefd0a81a93 client: fixed usermanagement styles Content was breaching out of the viewport because of use of vh/vw units which include scrollbars. The style of Usermanagement.vue is now also scoped. The tooltip css had to move to the main application.scss for it to still work. diff -r c00e3f7f5b17 -r a25b4988eb0c client/src/assets/application.scss --- a/client/src/assets/application.scss Tue Feb 19 09:13:27 2019 +0100 +++ b/client/src/assets/application.scss Tue Feb 19 09:49:14 2019 +0100 @@ -12,6 +12,7 @@ * Thomas Junk * Markus Kottländer */ +@import "@/assets/tooltip.scss"; $shadow-xs: 0 0.1rem 0.5rem rgba(0, 0, 0, 0.2); $border-radius: 0.25rem; diff -r c00e3f7f5b17 -r a25b4988eb0c client/src/components/App.vue --- a/client/src/components/App.vue Tue Feb 19 09:13:27 2019 +0100 +++ b/client/src/components/App.vue Tue Feb 19 09:49:14 2019 +0100 @@ -44,8 +44,8 @@ position: absolute; top: 0; left: 0; - height: 100vh; - width: 100vw; + right: 0; + bottom: 0; z-index: 4; pointer-events: none; } @@ -56,8 +56,8 @@ } #app { - height: 100vh; - width: 100vw; + height: 100%; + width: 100%; font-family: "Avenir", Helvetica, Arial, sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; diff -r c00e3f7f5b17 -r a25b4988eb0c client/src/components/usermanagement/Userdetail.vue --- a/client/src/components/usermanagement/Userdetail.vue Tue Feb 19 09:13:27 2019 +0100 +++ b/client/src/components/usermanagement/Userdetail.vue Tue Feb 19 09:49:14 2019 +0100 @@ -1,5 +1,5 @@