From eda3ab5c51c217e81a5cbea2ded6f370f88e709c Mon Sep 17 00:00:00 2001 From: kite Date: Thu, 18 Jun 2026 22:35:06 +0800 Subject: [PATCH] fix(pages): add pointer-events: none to gradient-border pseudo-element The ::after overlay on .gradient-border was intercepting click events, preventing benchmark table sort buttons (Precision/Recall) from working. --- pages/src/styles/index.css | 1 + 1 file changed, 1 insertion(+) diff --git a/pages/src/styles/index.css b/pages/src/styles/index.css index 364bb08..042a823 100644 --- a/pages/src/styles/index.css +++ b/pages/src/styles/index.css @@ -360,6 +360,7 @@ body { inset: -1px; border-radius: inherit; padding: 1px; + pointer-events: none; background: linear-gradient(135deg, #22c55e, #06b6d4, #8b5cf6, #22c55e); background-size: 300% 300%; animation: gradientShift 6s ease infinite;