From 3499cecb8b0e13694b7426531c5643a063c2d8e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A5l-Kristian=20Hamre?= Date: Fri, 25 Jul 2025 23:31:05 +0200 Subject: [PATCH] Fixed color on link in the deep dive. --- templates/dashboard_base.html | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/templates/dashboard_base.html b/templates/dashboard_base.html index 304037f..2f0c5f3 100644 --- a/templates/dashboard_base.html +++ b/templates/dashboard_base.html @@ -318,6 +318,17 @@ tr:nth-child(10) td.ticker { color: #d1d5db; } + + .post-card a { + color: #93c5fd; + text-decoration: none; + transition: color 0.2s, text-decoration 0.2s; + } + + .post-card a:hover { + color: #ffffff; + text-decoration: underline; + }