Bump blur radius

This commit is contained in:
Dan Abramov
2025-01-19 17:02:09 +00:00
parent 9ff3c60a6b
commit 13a299c5d9
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -149,7 +149,7 @@ export function VideoPostCard({
source={{uri: thumbnail}}
style={[a.w_full, a.h_full, {opacity: pressed ? 0.8 : 1}]}
accessibilityIgnoresInvertColors
blurRadius={40}
blurRadius={100}
/>
<MediaInsetBorder />
<View
@@ -425,7 +425,7 @@ export function CompactVideoPostCard({
source={{uri: thumbnail}}
style={[a.w_full, a.h_full, {opacity: pressed ? 0.8 : 1}]}
accessibilityIgnoresInvertColors
blurRadius={40}
blurRadius={100}
/>
<MediaInsetBorder />
<View
+1 -1
View File
@@ -936,7 +936,7 @@ function VideoItemPlaceholder({
style,
]}
contentFit={contentFit}
blurRadius={blur ? 40 : 0}
blurRadius={blur ? 100 : 0}
/>
) : null
}