From 1108f258c125afed4a292300b77323e493af8cc6 Mon Sep 17 00:00:00 2001 From: eggy Date: Sat, 11 May 2024 18:05:57 -0400 Subject: [PATCH] fix: move tag anchor inside div --- components/Tag.vue | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/components/Tag.vue b/components/Tag.vue index ce6d724..20f0d68 100644 --- a/components/Tag.vue +++ b/components/Tag.vue @@ -8,20 +8,18 @@ const props = defineProps<{ // const isLinkableTag = !props.name.includes(" "); const isLinkableTag = true; const tagClass = [ - "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 font-medium", + "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 font-medium no-underline", { "bg-pink-200 dark:bg-pink-900": props.highlight }, { "shadow-md": isLinkableTag }, ];