From 2ba142faa02d1838dd5eb0507e9e93f66926c780 Mon Sep 17 00:00:00 2001 From: leifhanack Date: Wed, 13 May 2026 20:59:38 -0700 Subject: [PATCH] Fix hero CTA hover styles broken by /simplify cleanup Docusaurus's global a:hover adds underline and overrides link color, so hover rules must explicitly set color and text-decoration: none. Co-Authored-By: Claude Sonnet 4.6 --- src/pages/index.module.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/pages/index.module.css b/src/pages/index.module.css index db9c107..ecbdad3 100644 --- a/src/pages/index.module.css +++ b/src/pages/index.module.css @@ -65,7 +65,9 @@ } .ctaPrimary:hover { + color: #E91E8C; background: rgba(255, 255, 255, 0.92); + text-decoration: none; } .ctaSecondary { @@ -76,7 +78,9 @@ } .ctaSecondary:hover { + color: white; background: rgba(255, 255, 255, 0.08); + text-decoration: none; } /* Content */ @@ -119,6 +123,7 @@ .card:hover { border-color: #ccc; background: #fafafa; + text-decoration: none; } .cardTitle { @@ -186,7 +191,9 @@ } .federationBtn:hover { + color: white; background: #d01a7e; + text-decoration: none; } /* Dark mode */