Skip to content

Commit

Permalink
Reset link underlining
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasjuhrich committed Oct 7, 2023
1 parent 75e6745 commit 9975c5b
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions sipa/static/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,18 @@ body {
padding-top: 50px;
}

/* LINKS:
* Don't underline them if they're not part of a special component
* (i.e., don't have a `class=` attribute
*/
a:not([class]):not(:hover) {
text-decoration: none;
}

a:not([class]):hover {
text-decoration: underline;
}

.affix {
top: 60px;
width: 100%;
Expand Down

0 comments on commit 9975c5b

Please sign in to comment.