diff client/src/map/Maplayer.vue @ 1191:b23622905a3f

switched entirely to sass instead of scss for cleaner code/less lines, just removed all ; and {}
author Markus Kottlaender <markus@intevation.de>
date Fri, 16 Nov 2018 14:37:07 +0100
parents 7e6fce79ddc8
children 49740dcba52c
line wrap: on
line diff
--- a/client/src/map/Maplayer.vue	Fri Nov 16 12:15:51 2018 +0100
+++ b/client/src/map/Maplayer.vue	Fri Nov 16 14:37:07 2018 +0100
@@ -2,25 +2,21 @@
     <div id="map" :class="mapStyle"></div>
 </template>
 
-<style lang="scss" scoped>
-.mapsplit {
-  height: 50vh;
-}
+<style lang="sass" scoped>
+.mapsplit
+  height: 50vh
 
-.mapfull {
-  height: 100vh;
-}
+.mapfull
+  height: 100vh
 
-@media print {
-  .mapfull {
-    width: 2000px;
-    height: 2828px;
-  }
-  .mapsplit {
-    width: 2000px;
-    height: 2828px;
-  }
-}
+@media print
+  .mapfull
+    width: 2000px
+    height: 2828px
+    
+  .mapsplit
+    width: 2000px
+    height: 2828px
 </style>
 
 <script>