Add hover color to settings anchor links (#1302)

This commit is contained in:
RachelElysia 2021-07-05 14:58:32 -04:00 committed by GitHub
parent 4f09c769b3
commit 34205c9b01
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -37,6 +37,7 @@
}
&__form-nav-list {
position: -webkit-sticky;
position: sticky;
// this is the spacing needed to make the sticky form nav position correctly when scrolling
// TODO: find a way to calculate these sticky positions this and use variables.
@ -55,6 +56,10 @@
a {
color: $core-fleet-black;
text-decoration: none;
&:hover {
color: $core-vibrant-blue;
}
}
}
}