feat: disable "z0x" and "404" highlighting

This commit is contained in:
z0x 2025-04-18 22:46:45 -04:00
parent 1638d86564
commit 70dc2d08a6
2 changed files with 2 additions and 1 deletions

View file

@ -6,7 +6,7 @@ export interface Props {
const { text } = Astro.props; const { text } = Astro.props;
--- ---
<p class="relative text-4xl font-semibold text-foreground"> <p class="select-none relative text-4xl font-semibold text-foreground">
<span class="absolute inset-0 opacity-0 blur-md motion-text bg-muted-foreground"></span> <span class="absolute inset-0 opacity-0 blur-md motion-text bg-muted-foreground"></span>
<span class="relative opacity-0 motion-text">{text}</span> <span class="relative opacity-0 motion-text">{text}</span>
</p> </p>

View file

@ -9,6 +9,7 @@
cursor: var(--cursor-url) 28 32, auto; cursor: var(--cursor-url) 28 32, auto;
@apply flex overflow-hidden flex-col items-center min-h-screen; @apply flex overflow-hidden flex-col items-center min-h-screen;
@apply bg-background text-foreground; @apply bg-background text-foreground;
@apply selection:bg-foreground selection:text-background;
} }
main { main {
@apply flex flex-col flex-auto gap-4 justify-center items-center; @apply flex flex-col flex-auto gap-4 justify-center items-center;