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
1 changed files with 1 additions and 4 deletions

View File

@ -49,10 +49,7 @@ export function SelectionBox({
return (
<div
ref={selectionBoxRef}
className="absolute pointer-events-none z-50"
style={{
backgroundColor: "hsl(var(--foreground) / 0.1)",
}}
className="absolute pointer-events-none z-50 bg-foreground/10"
/>
);
}