Skip to content

Commit

Permalink
fix(core): don't underline hovered footer icon links
Browse files Browse the repository at this point in the history
Set text-decoration property to none for
hovered footer links which contain icons to
prevent whitespace between links/icons from
getting underlined (default effect when text
links are hovered).
  • Loading branch information
koeaw committed Nov 5, 2024
1 parent 77b9f10 commit 20ec314
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions apis_core/core/static/css/core.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,8 @@
a #logo:hover {
opacity: 0.5;
}

footer a:has(> img):hover,
footer a:has(> span[class*="material-symbols"]):hover {
text-decoration: none;
}

0 comments on commit 20ec314

Please sign in to comment.