Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: Add vendor prefix for web blur. (#678)

authored by

Jacques Favreau and committed by
GitHub
404b2f04 b7f081d6

+2 -1
+2 -1
src/view/com/util/BlurView.web.tsx
··· 14 14 ...props 15 15 }: React.PropsWithChildren<BlurViewProps>) => { 16 16 // @ts-ignore using an RNW-specific attribute here -prf 17 - style = addStyle(style, {backdropFilter: `blur(${blurAmount || 10}px`}) 17 + let blur = `blur(${blurAmount || 10}px` 18 + style = addStyle(style, {backdropFilter: blur, WebkitBackdropFilter: blur}) 18 19 if (blurType === 'dark') { 19 20 style = addStyle(style, styles.dark) 20 21 } else {