Skip to content
Snippets Groups Projects
Commit 8d12670d authored by Nils Brinckmann's avatar Nils Brinckmann
Browse files

Changed icon size for other links to websites & mails

Also for the input fields.
parent 09ba4493
No related branches found
No related tags found
1 merge request!117Add links to website & to write mails to contacts
......@@ -71,7 +71,17 @@ permissions and limitations under the Licence.
class="required"
:rules="[rules.required]"
@input="update('email', $event)"
/>
>
<template slot="append">
<a v-if="value.email.length > 0" :href="'mailto:' + value.email">
<v-icon
small
>
mdi-email
</v-icon>
</a>
</template>
</v-text-field>
</v-col>
</v-row>
<v-row>
......@@ -87,7 +97,9 @@ permissions and limitations under the Licence.
>
<template slot="append">
<a v-if="value.website.length > 0" :href="value.website" target="_blank">
<v-icon>
<v-icon
small
>
mdi-open-in-new
</v-icon>
</a>
......@@ -100,7 +112,17 @@ permissions and limitations under the Licence.
placeholder="https://"
type="url"
@input="update('website', $event)"
/>
>
<template slot="append">
<a v-if="value.website.length > 0" :href="value.website" target="_blank">
<v-icon
small
>
mdi-open-in-new
</v-icon>
</a>
</template>
</v-text-field>
</v-col>
</v-row>
</v-form>
......
......@@ -142,7 +142,9 @@ permissions and limitations under the Licence.
>
<template slot="append">
<a v-if="value.website.length > 0" :href="value.website" target="_blank">
<v-icon>
<v-icon
small
>
mdi-open-in-new
</v-icon>
</a>
......
......@@ -145,7 +145,9 @@ permissions and limitations under the Licence.
>
<template slot="append">
<a v-if="value.website.length > 0" :href="value.website" target="_blank">
<v-icon>
<v-icon
small
>
mdi-open-in-new
</v-icon>
</a>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment