diff client/src/pdftool/Pdftool.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 2e06bc53b002
children 4f666dbb9abd
line wrap: on
line diff
--- a/client/src/pdftool/Pdftool.vue	Fri Nov 16 12:15:51 2018 +0100
+++ b/client/src/pdftool/Pdftool.vue	Fri Nov 16 14:37:07 2018 +0100
@@ -42,42 +42,37 @@
     </div>
 </template>
 
-<style lang="scss" scoped>
-.pdftool {
-  position: absolute;
-  margin-right: $offset;
-  margin-bottom: $offset;
-  bottom: 96px;
-  right: 0;
-}
+<style lang="sass" scoped>
+.pdftool
+  position: absolute
+  margin-right: $offset
+  margin-bottom: $offset
+  bottom: 96px
+  right: 0
 
-.inner {
-  background-color: white;
-  margin-left: $small-offset;
-  opacity: $slight-transparent;
-  text-align: left;
-}
+.inner
+  background-color: white
+  margin-left: $small-offset
+  opacity: $slight-transparent
+  text-align: left
 
-.pdftoolcollapsed {
-  min-height: $icon-height;
-  width: $icon-width;
-  transition: $transition-fast;
-}
+.pdftoolcollapsed
+  min-height: $icon-height
+  width: $icon-width
+  transition: $transition-fast
 
-.pdftoolexpanded {
-  width: $identify-width;
-}
+.pdftoolexpanded
+  width: $identify-width
 
-.minimizer {
-  position: absolute;
-  z-index: 2;
-  right: 0;
-  top: 0;
-  margin-top: $x-small-offset;
-  border-radius: $border-radius;
-  height: $icon-width;
-  width: $icon-height;
-}
+.minimizer
+  position: absolute
+  z-index: 2
+  right: 0
+  top: 0
+  margin-top: $x-small-offset
+  border-radius: $border-radius
+  height: $icon-width
+  width: $icon-height
 </style>
 
 <script>