Fix link style (#49)

This commit is contained in:
Geometrically
2023-05-06 14:20:13 -07:00
committed by GitHub
parent 5fde3c53b8
commit b85ddd1a53
5 changed files with 39 additions and 7 deletions

View File

@@ -841,3 +841,12 @@ select {
color: #000000;
border: 1px solid #000000;
}
.text-link {
color: var(--color-blue);
text-decoration: none;
&:hover {
text-decoration: underline;
}
}

View File

@@ -38,17 +38,13 @@ body {
--font-weight-title: var(--font-weight-extrabold);
}
a {
color: var(--color-blue);
text-decoration: none;
}
a.uncolored {
color: inherit;
}
input[type='text'],
input[type='number'],
input[type='password'],
textarea {
border-radius: var(--radius-md);
box-sizing: border-box;
@@ -62,6 +58,8 @@ textarea {
transition: box-shadow 0.1s ease-in-out;
min-height: 40px;
box-shadow: var(--shadow-inset-sm), 0 0 0 0 transparent;
border: none;
outline: none;
&:focus,
&:focus-visible {