mirror of
https://github.com/felixfoertsch/wordpress-dev-env.git
synced 2026-04-26 19:14:28 +02:00
22 lines
267 B
SCSS
22 lines
267 B
SCSS
a {
|
|
|
|
@include link-transition;
|
|
color: $color__link;
|
|
|
|
&:visited {
|
|
color: $color__link-visited;
|
|
}
|
|
|
|
&:hover,
|
|
&:active {
|
|
color: $color__link-hover;
|
|
outline: 0;
|
|
text-decoration: none;
|
|
}
|
|
|
|
&:focus {
|
|
outline: thin dotted;
|
|
text-decoration: underline;
|
|
}
|
|
}
|