1
0
mirror of https://github.com/danbee/danbarber.me synced 2025-03-04 08:59:10 +00:00

No more transition mixin

This commit is contained in:
Daniel Barber 2018-09-25 21:30:49 -04:00 committed by Daniel Barber
parent c32dd12774
commit cd96ffc8f6
2 changed files with 3 additions and 3 deletions

View File

@ -21,8 +21,8 @@ body > header {
}
a {
@include transition(color 0.25s 0s ease);
color: $link-color;
transition: color 0.25s 0s ease;
&:hover {
color: $link-color-hover;
}
@ -45,9 +45,9 @@ header nav {
padding-top: 0.15em;
}
a {
@include transition(text-shadow 0.25s 0s ease);
color: white;
text-decoration: none;
transition: text-shadow 0.25s 0s ease;
&:hover, &:focus {
color: white;
text-shadow: 0 0 5px rgba(255, 255, 255, 0.6);

View File

@ -60,7 +60,7 @@ article {
margin-bottom: 1.5em;
text-decoration: none;
color: mix($text-color, $text-color-light);
@include transition(background-color 0.5s);
transition: background-color 0.5s;
&:hover {
background: $link-color-hover;
text-shadow: none;