Skip to content

Commit

Permalink
Merge pull request runbox#1616 from runbox/shadowbas/improve-a11y-for…
Browse files Browse the repository at this point in the history
…-anchors

feat(a11y): Remove underline on anchor hover
  • Loading branch information
castaway authored Nov 11, 2024
2 parents 0bb0cd4 + a6dc6ee commit e4ba174
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -840,11 +840,22 @@ h3.sideNavHeader {
padding-left: 20px;
}

a {
color: mat.get-color-from-palette($rmm-default-primary);
}

a:hover {
text-decoration: none;
}

.mat-nav-list a.textLink {
color: mat.get-color-from-palette($rmm-default-primary);
text-decoration: underline;
}

.mat-nav-list a.textLink:hover {
text-decoration: none;
}

/*** Welcome Desk ***/

Expand Down

0 comments on commit e4ba174

Please sign in to comment.