From 8666d90d20fa1d79d47280425c10c4895f3a08d6 Mon Sep 17 00:00:00 2001 From: MartinBraquet Date: Fri, 1 May 2026 13:17:58 +0200 Subject: [PATCH] Refine hover styles and standardize color tokens on the About page for consistency --- web/pages/about.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/web/pages/about.tsx b/web/pages/about.tsx index 64cb64e1..aa20735b 100644 --- a/web/pages/about.tsx +++ b/web/pages/about.tsx @@ -92,14 +92,14 @@ function HelpCard({icon, title, text, buttonLabel, buttonUrl, buttonPrimary, id} bg-canvas-50 border-[1.5px] border-canvas-200 rounded-2xl p-7 transition-all duration-[120ms] ease-in hover:shadow-[0_10px_30px_rgba(44,36,22,0.09)] - hover:border-green-500 + hover:border-primary-500 before:absolute before:left-0 before:top-0 before:bottom-0 before:w-[4px] - before:bg-green-500 before:rounded-l-2xl + before:bg-primary-500 before:rounded-l-2xl before:opacity-0 before:transition-opacity before:duration-[120ms] hover:before:opacity-100 " > -
+
{icon}

@@ -113,7 +113,7 @@ function HelpCard({icon, title, text, buttonLabel, buttonUrl, buttonPrimary, id} color={ buttonPrimary ? 'bg-primary-500 hover:bg-primary-600 text-white border-primary-500 shadow-[0_3px_12px_rgba(193,127,62,0.3)]' - : 'bg-canvas-100 hover:border-green-500 hover:text-green-500 border-canvas-300 text-ink-900' + : 'bg-canvas-100 hover:border-primary-600 hover:text-primary-600 border-canvas-300 text-ink-900' } />