We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65a5d0b commit 448cbd0Copy full SHA for 448cbd0
src/utils/createContainerElement.ts
@@ -18,5 +18,9 @@ export const createContainer = ({
18
waveContainer.style.borderRadius = `${borderTopLeftRadius} ${borderTopRightRadius} ${borderBottomRightRadius} ${borderBottomLeftRadius}`
19
waveContainer.style.overflow = 'hidden'
20
waveContainer.style.pointerEvents = 'none'
21
+
22
+ // Meet Safari, the new IE 💩
23
+ waveContainer.style.webkitMaskImage = '-webkit-radial-gradient(white, black)'
24
25
return waveContainer
26
}
0 commit comments