From 09ba4493da0abbdcf6743ee23a4d4ad21335e635 Mon Sep 17 00:00:00 2001
From: Nils Brinckmann <nils.brinckmann@gfz-potsdam.de>
Date: Tue, 22 Jun 2021 14:48:08 +0200
Subject: [PATCH] Switched to small icons as suggested by Marc

---
 components/ContactBasicData.vue          | 8 ++++++--
 components/DeviceBasicData.vue           | 4 +++-
 components/PlatformBasicData.vue         | 4 +++-
 pages/devices/_deviceId/contacts.vue     | 8 ++++++--
 pages/platforms/_platformId/contacts.vue | 8 ++++++--
 5 files changed, 24 insertions(+), 8 deletions(-)

diff --git a/components/ContactBasicData.vue b/components/ContactBasicData.vue
index 07ce21b32..e23a81f02 100644
--- a/components/ContactBasicData.vue
+++ b/components/ContactBasicData.vue
@@ -45,7 +45,9 @@ permissions and limitations under the Licence.
         <label>E-mail</label>
         {{ value.email | orDefault }}
         <a v-if="value.email.length > 0" :href="'mailto:' + value.email">
-          <v-icon>
+          <v-icon
+            small
+          >
             mdi-email
           </v-icon>
         </a>
@@ -56,7 +58,9 @@ permissions and limitations under the Licence.
         <label>Website</label>
         {{ value.website | orDefault }}
         <a v-if="value.website.length > 0" :href="value.website" target="_blank">
-          <v-icon>
+          <v-icon
+            small
+          >
             mdi-open-in-new
           </v-icon>
         </a>
diff --git a/components/DeviceBasicData.vue b/components/DeviceBasicData.vue
index 815107bc6..2ba56c254 100644
--- a/components/DeviceBasicData.vue
+++ b/components/DeviceBasicData.vue
@@ -80,7 +80,9 @@ permissions and limitations under the Licence.
         <label>Website</label>
         {{ value.website | orDefault }}
         <a v-if="value.website.length > 0" :href="value.website" target="_blank">
-          <v-icon>
+          <v-icon
+            small
+          >
             mdi-open-in-new
           </v-icon>
         </a>
diff --git a/components/PlatformBasicData.vue b/components/PlatformBasicData.vue
index 0e5952f21..44908adc8 100644
--- a/components/PlatformBasicData.vue
+++ b/components/PlatformBasicData.vue
@@ -84,7 +84,9 @@ permissions and limitations under the Licence.
         <label>Website</label>
         {{ value.website | orDefault }}
         <a v-if="value.website.length > 0" :href="value.website" target="_blank">
-          <v-icon>
+          <v-icon
+            small
+          >
             mdi-open-in-new
           </v-icon>
         </a>
diff --git a/pages/devices/_deviceId/contacts.vue b/pages/devices/_deviceId/contacts.vue
index 7cc810b1d..fb19d55b3 100644
--- a/pages/devices/_deviceId/contacts.vue
+++ b/pages/devices/_deviceId/contacts.vue
@@ -146,7 +146,9 @@ permissions and limitations under the Licence.
                   <label>E-Mail:</label>
                   {{ contact.email | orDefault }}
                   <a v-if="contact.email.length > 0" :href="'mailto:' + contact.email">
-                    <v-icon>
+                    <v-icon
+                      small
+                    >
                       mdi-email
                     </v-icon>
                   </a>
@@ -158,7 +160,9 @@ permissions and limitations under the Licence.
                   <label>Website:</label>
                   {{ contact.website | orDefault }}
                   <a v-if="contact.website.length > 0" :href="contact.website" target="_blank">
-                    <v-icon>
+                    <v-icon
+                      small
+                    >
                       mdi-open-in-new
                     </v-icon>
                   </a>
diff --git a/pages/platforms/_platformId/contacts.vue b/pages/platforms/_platformId/contacts.vue
index dcb200ae3..5cf7159f8 100644
--- a/pages/platforms/_platformId/contacts.vue
+++ b/pages/platforms/_platformId/contacts.vue
@@ -149,7 +149,9 @@ permissions and limitations under the Licence.
                   <label>E-Mail:</label>
                   {{ contact.email | orDefault }}
                   <a v-if="contact.email.length > 0" :href="'mailto:' + contact.email">
-                    <v-icon>
+                    <v-icon
+                      small
+                    >
                       mdi-email
                     </v-icon>
                   </a>
@@ -161,7 +163,9 @@ permissions and limitations under the Licence.
                   <label>Website:</label>
                   {{ contact.website | orDefault }}
                   <a v-if="contact.website.length > 0" :href="contact.website" target="_blank">
-                    <v-icon>
+                    <v-icon
+                      small
+                    >
                       mdi-open-in-new
                     </v-icon>
                   </a>
-- 
GitLab