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.
This commit is contained in:
kite 2026-06-18 22:35:06 +08:00
parent dfbbc5b3ff
commit eda3ab5c51

View file

@ -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;