Fix link hover in dark mode

This commit is contained in:
joncrangle
2023-11-30 01:48:38 -05:00
parent 4acb5f615a
commit f5458aa1bf
4 changed files with 7 additions and 7 deletions

View File

@@ -2,9 +2,9 @@
@tailwind components;
@tailwind utilities;
@layer components {
@layer base {
a {
@apply text-slate-600 dark:text-slate-400 hover:text-blue-500 hover:underline underline-offset-2 transition-colors duration-300;
@apply text-slate-600 dark:text-slate-400 hover:text-blue-500 dark:hover:text-blue-500 hover:underline underline-offset-2 transition-colors duration-300;
}
h1 {
@apply text-3xl sm:text-4xl font-extrabold tracking-tight text-slate-900 dark:text-slate-200;