Swap background CSS inline style for tailwind utility

This commit is contained in:
Brandon McConnell
2025-07-30 16:54:20 -04:00
parent 48282555e0
commit cd5642161b
@@ -49,10 +49,7 @@ export function SelectionBox({
return ( return (
<div <div
ref={selectionBoxRef} ref={selectionBoxRef}
className="absolute pointer-events-none z-50" className="absolute pointer-events-none z-50 bg-foreground/10"
style={{
backgroundColor: "hsl(var(--foreground) / 0.1)",
}}
/> />
); );
} }