public/components/Tag.vue
eggy 314b0efe3a feat: make tags bolder
easier to read
2023-05-24 12:32:54 -04:00

20 lines
428 B
Vue

<script setup lang="ts">
const props = defineProps<{
dest: string;
highlight?: boolean;
}>();
</script>
<template>
<a :href="dest">
<div
:class="[
'inline-block text-xs rounded-lg py-1 px-2 mt-1 mr-1 transition border border-pink-200 dark:border-pink-900 border-2 shadow-md font-medium',
{ 'bg-pink-200 dark:bg-pink-900': highlight },
]"
>
<slot />
</div>
</a>
</template>