fix: paddings and margins
TS Lint / Oxlint (push) Successful in 57s
TS Lint / TypeScript (push) Successful in 1m8s
TS Lint / ESLint (push) Successful in 1m28s
Docker Build / build (push) Successful in 8m40s

This commit is contained in:
2026-07-16 11:28:18 +02:00
parent 5ae0684d39
commit fb48f64ed8
5 changed files with 87 additions and 71 deletions
+3 -4
View File
@@ -1,15 +1,14 @@
<script setup lang="ts">
import { ArrowBigRightDashIcon } from "@lucide/vue";
defineProps<{list: string}>();
defineProps<{ list: string }>();
</script>
<template>
<router-link
:to="`/${list}`"
class="w-full flex gap-2 mb-2"
class="w-full flex gap-2 mb-2 hover:underline"
>
<arrow-big-right-dash-icon :size="16" class="inline" />
<span class="underline">{{ list }}</span>
<arrow-big-right-dash-icon :size="16" class="inline" /> {{ list }}
</router-link>
</template>