# HG changeset patch # User Thomas Junk # Date 1536666076 -7200 # Node ID b17a4482d07d7cb2cd621892a15ca850b414a07c # Parent ef00684e021f788a69b2cd9390de1560459ecc0e feat: UI adaptation of 4 slots We have now basically 4 slots for UI components: Top middle (left, right) and bottom. diff -r ef00684e021f -r b17a4482d07d client/src/App.vue --- a/client/src/App.vue Tue Sep 11 12:38:34 2018 +0200 +++ b/client/src/App.vue Tue Sep 11 13:41:16 2018 +0200 @@ -1,11 +1,28 @@ diff -r ef00684e021f -r b17a4482d07d client/src/application/assets/application.scss --- a/client/src/application/assets/application.scss Tue Sep 11 12:38:34 2018 +0200 +++ b/client/src/application/assets/application.scss Tue Sep 11 13:41:16 2018 +0200 @@ -1,9 +1,9 @@ -$offset: 20px; -$small-offset: 10px; -$large-offset: 30px; -$x-large-offset: 50px; -$iconsize: 3em; -$iconLineHeight: 0.25em; +$offset: 1rem; +$small-offset: 0.5rem; +$large-offset: 2rem; +$x-large-offset: 3rem; +$iconsize: 3rem; +$iconLineHeight: 0.25rem; $iconwidth: 20px; $basic-shadow: 1px 3px 8px 2px rgba(220, 220, 220, 0.75); $basic-shadow-light: 1px 1px 12px 1px rgba(235, 235, 235, 0.75); @@ -12,6 +12,10 @@ $transition-slow: 3s; $topbarheight: 5vh; +.debug { + border: 1px solid red; +} + %fully-centered { position: absolute; top: 50%; diff -r ef00684e021f -r b17a4482d07d client/src/map/Maplayer.vue --- a/client/src/map/Maplayer.vue Tue Sep 11 12:38:34 2018 +0200 +++ b/client/src/map/Maplayer.vue Tue Sep 11 13:41:16 2018 +0200 @@ -1,5 +1,5 @@