From 62c6c8c437d9ac0885fe7825d7f5f4a561a73a2b Mon Sep 17 00:00:00 2001 From: OpenClaw Agent Date: Wed, 29 Apr 2026 11:41:33 +0200 Subject: [PATCH] fix: remove dotted underline from channel links and Artists list color on light bg --- public/styles.css | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/public/styles.css b/public/styles.css index 3af200f..0d08a93 100644 --- a/public/styles.css +++ b/public/styles.css @@ -170,8 +170,14 @@ a:hover { border-bottom: 1px solid #313131; } margin-bottom: 5px; text-decoration: none; border: none; + border-bottom: none !important; +} +.channelList__channel:hover { + transform: scale(1.1); + border: none; + border-bottom: none !important; + text-decoration: none; } -.channelList__channel:hover { transform: scale(1.1); } .channelList__channelIcon { --initialWidth: 20px; --endWidth: 25px; @@ -234,11 +240,12 @@ a:hover { border-bottom: 1px solid #313131; } font-size: 14px; } .artistsList a { - color: #ddd; + color: #333; border: none; padding: 4px 0; + text-decoration: none; } -.artistsList a:hover { color: #fff; text-decoration: underline; } +.artistsList a:hover { color: #000; text-decoration: underline; } .playlogControls { display: flex;