Fix link hover in dark mode
This commit is contained in:
File diff suppressed because one or more lines are too long
@@ -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>
|
||||||
|
|||||||
@@ -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>
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user