Add underlines to links

This commit is contained in:
Gabriel Arazas 2023-10-28 16:51:51 +08:00
parent d7f19409c6
commit 4452e730e7
No known key found for this signature in database
GPG Key ID: ADE0C41DAB221FCC
2 changed files with 15 additions and 2 deletions

View File

@ -39,11 +39,10 @@ h4, h5, h6 {
a { a {
color: var(--accent-color); color: var(--accent-color);
text-decoration: none; text-decoration-thickness: .1rem;
&:hover { &:hover {
color: var(--base0C); color: var(--base0C);
text-decoration: underline;
} }
} }

View File

@ -44,6 +44,15 @@ footer[aria-label="Site footer"] {
align-items: baseline; align-items: baseline;
flex-flow: row wrap; flex-flow: row wrap;
gap: 0.5em; gap: 0.5em;
a {
text-decoration: none;
&:hover {
background: unset;
color: initial;
}
}
} }
.site__languages { .site__languages {
@ -57,6 +66,11 @@ footer[aria-label="Site footer"] {
} }
.site__social-icon { .site__social-icon {
&:hover {
background: unset;
color: var(--base0C);
}
svg { svg {
--size: 1.25em; --size: 1.25em;
height: var(--size); height: var(--size);