Use solid color and transition to red color on hover

This commit is contained in:
Jacob Müller 2016-09-23 19:44:14 +02:00
parent c8b2c39409
commit 8d713f1574
1 changed files with 6 additions and 1 deletions

View File

@ -89,9 +89,10 @@
}
.styleguide-trigger {
color: $darkgrey;
text-decoration: none;
opacity: .24;
float: right;
transition: color .3s;
@include respond-to('mobile') {
display: block;
@ -100,6 +101,10 @@
float: none;
}
&:hover {
color: $red-600;
}
.icon-favorite {
line-height: 20px;
}