From d5a2787f56878091cae4a2fd63fdaaf02889cca2 Mon Sep 17 00:00:00 2001 From: eggy Date: Sat, 20 Apr 2024 18:20:01 -0400 Subject: [PATCH 1/7] content: remove trident --- content/stories/shorts/trident.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/content/stories/shorts/trident.md b/content/stories/shorts/trident.md index 522c70c..02d61f0 100644 --- a/content/stories/shorts/trident.md +++ b/content/stories/shorts/trident.md @@ -1,6 +1,7 @@ --- title: "A Triden(t) Against the World" date: 2024-02-29 +_draft: true tags: - shorts - "content warning: political fluff" @@ -56,4 +57,4 @@ Joe made a face at the pet name, but he leaned into the touch all the same. "You They sat there, leaning against each other, simply enjoying the shared warmth of the other's presence. Finally, Joe spoke up. "Want to come up with a cover story together?" -Donald rubbed his hands together. "You're on. I'm thinking of asking Pingping to cover for us with a trade deal or two…" \ No newline at end of file +Donald rubbed his hands together. "You're on. I'm thinking of asking Pingping to cover for us with a trade deal or two…" From 1108f258c125afed4a292300b77323e493af8cc6 Mon Sep 17 00:00:00 2001 From: eggy Date: Sat, 11 May 2024 18:05:57 -0400 Subject: [PATCH 2/7] 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 }, ];