(Update) Nav: replace link styling with mixin / decrease letter-spacing

This commit is contained in:
0xfff 2016-09-26 14:40:13 +02:00
parent a502cf4d70
commit e3c762edf8

View file

@ -48,10 +48,12 @@ $nav-height: 90px;
&__link {
display: inline-block;
padding: 0 10px;
&, &:hover, &:visited, &:focus, &:active {
color: rgba($color-white, 1);
text-decoration: none;
}
@include link-style(
$link: rgba($color-white, 1),
$visited: rgba($color-white, 1),
$hover: rgba($color-white, 1),
$active: rgba($color-white, 1));
letter-spacing: -0.008em;
}
}