fix: optimize CSS

This commit is contained in:
webfussel 2024-05-30 08:52:28 +02:00
parent b9e9e2d691
commit 282e2086b0
21 changed files with 217 additions and 258 deletions

24
components/Technology.vue Normal file
View file

@ -0,0 +1,24 @@
<template>
<div class="Technology flex-col" :class="[size]">
<a v-if="link" :href="link" target="_blank" rel="noopener noreferrer">
<img loading="lazy" :src="img" :alt="altText()" :height="size === 'm' ? 30 : 50" :class="[size]"/>
</a>
<img v-else loading="lazy" :height="size === 'm' ? 30 : 50" :src="img" :alt="altText()"/>
<span class="tip">{{name}}</span>
</div>
</template>
<script setup lang="ts">
type Props = {
img: string
name: string
link?: string
size?: 'm' | 'l'
}
const {name} = withDefaults(defineProps<Props>(), {
size: 'm'
})
const altText = () => `Icon für ${name}`
</script>