comparison 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
comparison
equal deleted inserted replaced
1190:e3de65179889 1191:b23622905a3f
1 <template> 1 <template>
2 <div id="map" :class="mapStyle"></div> 2 <div id="map" :class="mapStyle"></div>
3 </template> 3 </template>
4 4
5 <style lang="scss" scoped> 5 <style lang="sass" scoped>
6 .mapsplit { 6 .mapsplit
7 height: 50vh; 7 height: 50vh
8 } 8
9 9 .mapfull
10 .mapfull { 10 height: 100vh
11 height: 100vh; 11
12 } 12 @media print
13 13 .mapfull
14 @media print { 14 width: 2000px
15 .mapfull { 15 height: 2828px
16 width: 2000px; 16
17 height: 2828px; 17 .mapsplit
18 } 18 width: 2000px
19 .mapsplit { 19 height: 2828px
20 width: 2000px;
21 height: 2828px;
22 }
23 }
24 </style> 20 </style>
25 21
26 <script> 22 <script>
27 /* 23 /*
28 * This is Free Software under GNU Affero General Public License v >= 3.0 24 * This is Free Software under GNU Affero General Public License v >= 3.0