Skip to content

Commit

Permalink
feat(link): Add underline animation
Browse files Browse the repository at this point in the history
  • Loading branch information
1ilsang committed Feb 16, 2024
1 parent 068138e commit 9b6d6db
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/features/styles/markdown/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,12 @@

a {
color: $highlight-color;
text-decoration: underline 0.15em rgba(48, 255, 203, 0%);
transition: text-decoration-color 500ms;

&:hover {
cursor: pointer;
text-decoration: underline;
text-decoration-color: rgba(48, 255, 203, 100%);
}
}

Expand Down

0 comments on commit 9b6d6db

Please sign in to comment.