Skip to content

Commit 0d06caa

Browse files
committed
Fixed hover color of footer links
1 parent 9a819a5 commit 0d06caa

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

theme.scss

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,8 @@ $navbar-hl: $gs-secondary-alt-color;
150150

151151
// Footer
152152
$footer-bg: $gs-secondary-color;
153-
$footer-fg: $gs-white-color--light;
153+
$footer-fg: $gs-white-base-color;
154+
$footer-link-hl: $gs-white-color--light;
154155

155156
// Inputs
156157
$input-bg: $gs-white-base-color;
@@ -566,3 +567,18 @@ input[type=checkbox] {
566567
.quarto-title .quarto-categories {
567568
color: $gs-primary-color;
568569
}
570+
571+
572+
/* Footer
573+
-----------------------------------------------------------------------------*/
574+
footer {
575+
576+
a, i {
577+
578+
&:hover,
579+
&:focus {
580+
color: $footer-link-hl;
581+
text-decoration: underline;
582+
}
583+
}
584+
}

0 commit comments

Comments
 (0)