Skip to content

Commit 0af91ad

Browse files
Romain Cresteybleucitron
authored andcommitted
fix: vo links hover color
1 parent 8516a7c commit 0af91ad

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

sites/svelte.dev/src/routes/+layout.svelte

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,13 +72,12 @@
7272
}
7373
7474
:global(.text .vo a) {
75-
color: unset;
75+
color: var(--sk-text-1);
7676
box-shadow: inset 0 -1px 0 0 var(--sk-text-4);
77-
transition: box-shadow 0.1s ease-in-out, font-weight 0.1s ease-in-out;
77+
transition: color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
7878
}
7979
8080
:global(.text .vo a:hover) {
81-
color: white;
82-
box-shadow: inset 0 -1px 0 0 white;
81+
color: var(--sk-text-3);
8382
}
8483
</style>

0 commit comments

Comments
 (0)