diff client/src/components/map/Maplayer.vue @ 1449:bb47531bdd22

sass to scss
author Thomas Junk <thomas.junk@intevation.de>
date Mon, 03 Dec 2018 10:19:59 +0100
parents 7fa030127b05
children 8e67f6e8d195
line wrap: on
line diff
--- a/client/src/components/map/Maplayer.vue	Mon Dec 03 09:28:28 2018 +0100
+++ b/client/src/components/map/Maplayer.vue	Mon Dec 03 10:19:59 2018 +0100
@@ -2,24 +2,29 @@
   <div id="map" :class="mapStyle"></div>
 </template>
 
-<style lang="sass" scoped>
-.nocursor
-  cursor: none
+<style lang="scss" scoped>
+.nocursor {
+  cursor: none;
+}
 
-.mapsplit
-  height: 50vh
+.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>