feat: Glowing links in dark mode

This commit is contained in:
Leni Aniva 2024-10-11 11:49:58 -07:00
parent 479690d2b2
commit 20f663e654
Signed by: aniva
GPG Key ID: 4D9B1C8D10EA4C50
1 changed files with 5 additions and 0 deletions

View File

@ -107,6 +107,11 @@
gap: 20px;
}
}
@media (prefers-color-scheme: dark) {
:global(a), :global(button) {
text-shadow: 0 0 5px theme('colors.eucalyptus.400');
}
}
main {
width: min(100vw, max(50vw, 100vh));
grid-area: content;