From 70dc2d08a681e5d6f7cd70210730772f0fb823ec Mon Sep 17 00:00:00 2001 From: z0x Date: Fri, 18 Apr 2025 22:46:45 -0400 Subject: [PATCH] feat: disable "z0x" and "404" highlighting --- src/components/Text.astro | 2 +- src/styles/globals.css | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/Text.astro b/src/components/Text.astro index 5887d08..d8340bb 100644 --- a/src/components/Text.astro +++ b/src/components/Text.astro @@ -6,7 +6,7 @@ export interface Props { const { text } = Astro.props; --- -

+

{text}

diff --git a/src/styles/globals.css b/src/styles/globals.css index 1e26f1d..449eeb1 100644 --- a/src/styles/globals.css +++ b/src/styles/globals.css @@ -9,6 +9,7 @@ cursor: var(--cursor-url) 28 32, auto; @apply flex overflow-hidden flex-col items-center min-h-screen; @apply bg-background text-foreground; + @apply selection:bg-foreground selection:text-background; } main { @apply flex flex-col flex-auto gap-4 justify-center items-center;