Skip to content

Commit 301147b

Browse files
Merge pull request abseil#39 from manshreck/staging
Fix links in footer to override default color
2 parents d2f8b86 + 1fc1de7 commit 301147b

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

_sass/modules/_footer.scss

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,18 +22,26 @@ footer {
2222
}
2323

2424
a {
25-
color: $white;
2625

27-
&:hover {
26+
&:link {
27+
text-decoration: underline;
28+
color: $white;
29+
}
30+
&:visited {
2831
text-decoration: underline;
2932
color: $white;
3033
}
31-
&:visited {
34+
&:focus {
35+
text-decoration: underline;
36+
color: $white;
37+
}
38+
&:hover {
3239
text-decoration: underline;
3340
color: $white;
3441
}
3542
&::after {
36-
display: none;
43+
text-decoration: underline;
44+
color: $white;
3745
}
3846
}
3947

0 commit comments

Comments
 (0)