From 2548a815497d2ac38d14ba4dde1cfbe599b7ef41 Mon Sep 17 00:00:00 2001 From: chihlasm Date: Fri, 13 Mar 2026 02:35:48 -0400 Subject: [PATCH] fix: replace non-standard Tailwind opacity /12 with rgba in ScriptFilterBar Co-Authored-By: Claude Sonnet 4.6 --- frontend/src/components/scripts/ScriptFilterBar.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/scripts/ScriptFilterBar.tsx b/frontend/src/components/scripts/ScriptFilterBar.tsx index e894dbcb..c8dd579e 100644 --- a/frontend/src/components/scripts/ScriptFilterBar.tsx +++ b/frontend/src/components/scripts/ScriptFilterBar.tsx @@ -38,7 +38,7 @@ export function ScriptFilterBar({ inputValue, setInputValue }: Props) { 'font-label text-xs px-3 py-1.5 rounded-full border transition-all', activeCategoryId === null ? 'bg-primary/10 border-primary/30 text-foreground border-l-[3px] border-l-primary' - : 'border-border text-muted-foreground hover:border-white/12 hover:text-foreground' + : 'border-border text-muted-foreground hover:border-[rgba(255,255,255,0.12)] hover:text-foreground' )} > All @@ -52,7 +52,7 @@ export function ScriptFilterBar({ inputValue, setInputValue }: Props) { 'font-label text-xs px-3 py-1.5 rounded-full border transition-all', activeCategoryId === cat.id ? 'bg-primary/10 border-primary/30 text-foreground border-l-[3px] border-l-primary' - : 'border-border text-muted-foreground hover:border-white/12 hover:text-foreground' + : 'border-border text-muted-foreground hover:border-[rgba(255,255,255,0.12)] hover:text-foreground' )} > {cat.name}