Skip to content

Commit d5c0adb

Browse files
authored
fix(drawing): fix blur not showing in safari (#669)
* fix(drawing): fix blur not showing in safari
1 parent 16dc5bd commit d5c0adb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/drawing/DrawingSVG.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export function DrawingSVG({ className, children, ...rest }: Props, ref: React.R
1818
{...rest}
1919
>
2020
<defs>
21-
<filter filterUnits="userSpaceOnUse" height="100vh" id="ba-DrawingSVG-shadow" width="100vw">
21+
<filter filterUnits="userSpaceOnUse" id="ba-DrawingSVG-shadow">
2222
<feGaussianBlur in="SourceGraphic" stdDeviation="1" />
2323
</filter>
2424
</defs>

0 commit comments

Comments
 (0)