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

File diff suppressed because one or more lines are too long

View File

@@ -255,13 +255,13 @@
Code Licensed Under GPL v3.0 | Code Licensed Under GPL v3.0 |
<a <a
href="https://github.com/everywall/ladder" href="https://github.com/everywall/ladder"
class="hover:text-blue-500 hover:underline underline-offset-2 transition-colors duration-300" class="hover:text-blue-500 dark:hover:text-blue-500 hover:underline underline-offset-2 transition-colors duration-300"
>View Source</a >View Source</a
> >
| |
<a <a
href="https://github.com/everywall" href="https://github.com/everywall"
class="hover:text-blue-500 hover:underline underline-offset-2 transition-colors duration-300" class="hover:text-blue-500 dark:hover:text-blue-500 hover:underline underline-offset-2 transition-colors duration-300"
>Everywall</a >Everywall</a
> >
</p> </p>

View File

@@ -368,13 +368,13 @@
Code Licensed Under GPL v3.0 | Code Licensed Under GPL v3.0 |
<a <a
href="https://github.com/everywall/ladder" href="https://github.com/everywall/ladder"
class="hover:text-blue-500 hover:underline underline-offset-2 transition-colors duration-300" class="hover:text-blue-500 dark:hover:text-blue-500 hover:underline underline-offset-2 transition-colors duration-300"
>View Source</a >View Source</a
> >
| |
<a <a
href="https://github.com/everywall" href="https://github.com/everywall"
class="hover:text-blue-500 hover:underline underline-offset-2 transition-colors duration-300" class="hover:text-blue-500 dark:hover:text-blue-500 hover:underline underline-offset-2 transition-colors duration-300"
>Everywall</a >Everywall</a
> >
</p> </p>

View File

@@ -2,9 +2,9 @@
@tailwind components; @tailwind components;
@tailwind utilities; @tailwind utilities;
@layer components { @layer base {
a { 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 { h1 {
@apply text-3xl sm:text-4xl font-extrabold tracking-tight text-slate-900 dark:text-slate-200; @apply text-3xl sm:text-4xl font-extrabold tracking-tight text-slate-900 dark:text-slate-200;