From 20ec3148aa351ab5ae2649f2606415cd63c079eb Mon Sep 17 00:00:00 2001 From: KK Date: Tue, 5 Nov 2024 12:13:00 +0100 Subject: [PATCH] fix(core): don't underline hovered footer icon links 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). --- apis_core/core/static/css/core.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/apis_core/core/static/css/core.css b/apis_core/core/static/css/core.css index 7783ec2bc..92b092f2a 100644 --- a/apis_core/core/static/css/core.css +++ b/apis_core/core/static/css/core.css @@ -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; +}