Fix underlines

This commit is contained in:
Justin Edmund 2022-12-26 12:10:21 -08:00
parent a8d83ee713
commit 6ce651db1c
3 changed files with 8 additions and 4 deletions

View file

@ -18,6 +18,10 @@
transform: translate(-50%, -50%); transform: translate(-50%, -50%);
z-index: 21; z-index: 21;
a:hover {
text-decoration: underline;
}
.DialogHeader { .DialogHeader {
display: flex; display: flex;
align-items: center; align-items: center;

View file

@ -8,6 +8,10 @@
&:hover { &:hover {
background: var(--grid-rep-hover); background: var(--grid-rep-hover);
a {
text-decoration: none;
}
h2, h2,
.Grid { .Grid {
cursor: pointer; cursor: pointer;

View file

@ -33,10 +33,6 @@ a {
color: $blue; color: $blue;
text-decoration: none; text-decoration: none;
&:hover {
text-decoration: underline;
}
&:visited { &:visited {
color: $blue; color: $blue;
} }