FIX: breaking tech list

Or rather non-breaking tech list
This commit is contained in:
webfussel 2025-06-06 07:24:07 +02:00
parent 2d65119e7e
commit 4726749456
4 changed files with 17 additions and 19 deletions

View file

@ -1,8 +1,8 @@
<template>
<div class="Technology flex-col tip-container" :class="[size]">
<a v-if="link" :href="link" target="_blank" rel="noopener noreferrer">
<NuxtLink v-if="link" :to="link" external target="_blank" rel="noopener noreferrer">
<img loading="lazy" :src="img" :alt="altText()" :height="getPixelForSize()" :width="getWidth()" />
</a>
</NuxtLink>
<img v-else loading="lazy" :height="getPixelForSize()" :width="getWidth()" :src="img" :alt="altText()"/>
<span class="tip">{{name}}</span>
</div>