FIX: mobile layout for easy skills

Better layout for easily explained skills
This commit is contained in:
webfussel 2025-02-21 20:34:08 +01:00
parent d8593a7280
commit 9ecafeba02
6 changed files with 75 additions and 27 deletions

View file

@ -1,11 +1,11 @@
<template>
<a v-if="isExternal" :href="href" :target="target" class="text inline-flex-row">
{{ content }}
<Icon :name="`ph:arrow-square-out-duotone`" mode="svg" />
<Icon name="ph:arrow-square-out-duotone" mode="svg" />
</a>
<NuxtLink v-else :to="href" class="text inline-flex-row">
{{ content }}
<Icon :name="`ph:link-simple-duotone`" mode="svg" />
<Icon name="ph:link-simple-duotone" mode="svg" />
</NuxtLink>
</template>