fix: paddings and margins
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user