changeset 3019:4b9e83cf82ea

client: removed unnecessary css class
author Markus Kottlaender <markus@intevation.de>
date Thu, 11 Apr 2019 17:47:04 +0200
parents 42d1e31de844
children 94edd5e5dd1b
files client/src/components/ImportStretches.vue
diffstat 1 files changed, 1 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/client/src/components/ImportStretches.vue	Thu Apr 11 17:38:54 2019 +0200
+++ b/client/src/components/ImportStretches.vue	Thu Apr 11 17:47:04 2019 +0200
@@ -29,7 +29,7 @@
           <template v-slot:row="{ item: stretch }">
             <div class="py-1 col-4 ">
               <a
-                class="linkto text-info"
+                class="pointer text-info"
                 v-if="isInStaging(stretch.properties.name)"
                 @click="gotoStaging(getStagingLink(stretch.properties.name))"
               >
@@ -602,9 +602,3 @@
   }
 };
 </script>
-
-<style lang="scss" scoped>
-.linkto {
-  cursor: pointer;
-}
-</style>