mirror of
https://github.com/foo-dogsquared/website.git
synced 2025-01-31 19:57:57 +00:00
21 lines
307 B
SCSS
21 lines
307 B
SCSS
|
.heading-links {
|
||
|
color: $text-color;
|
||
|
&:hover {
|
||
|
color: $text-color;
|
||
|
text-decoration: none;
|
||
|
&::after {
|
||
|
color: $grey-color;
|
||
|
content: ' →';
|
||
|
}
|
||
|
}
|
||
|
|
||
|
&:visited {
|
||
|
color: $text-color;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.post-link:visited {
|
||
|
color: $brown;
|
||
|
}
|
||
|
|