1
Fork 0

Only add transition on hover

This commit is contained in:
Jake Howard 2019-10-29 18:51:12 +00:00
parent 60c66b5ab0
commit 2c6a63b954
Signed by: jake
GPG key ID: 57AFB45680EDD477

View file

@ -11,10 +11,10 @@ html, body {
} }
a { a {
transition: color 0.5s;
color: $primary; color: $primary;
&:hover { &:hover {
transition: color 0.5s;
color: $body-color; color: $body-color;
} }