Skip to content

Commit

Permalink
feat: use text-decoration-* to style links (#236)
Browse files Browse the repository at this point in the history
  • Loading branch information
ignatiusmb committed Apr 18, 2024
1 parent 692ae1f commit fa6a326
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,10 @@ body {

a {
color: rgba(242, 242, 242, 1);
border-bottom: 1px solid rgba(128, 128, 128, 0.4);
text-decoration-thickness: 2px;
text-decoration-line: underline;
text-decoration-color: rgba(128, 128, 128, 0.4);
}
a:hover {
border-color: rgba(128, 128, 128, 0.8);
text-decoration-color: rgba(128, 128, 128, 0.8);
}

0 comments on commit fa6a326

Please sign in to comment.