Skip to content

Commit 41940f0

Browse files
authored
fix: remove unwanted styles (#3111)
* fix: remove unwanted styles * fix: proper bottom inset
1 parent 96e4cc2 commit 41940f0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package/src/components/ImageGallery/ImageGallery.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -528,7 +528,7 @@ export const ImageGallery = (props: Props) => {
528528
<Animated.View
529529
accessibilityLabel='Image Gallery'
530530
pointerEvents={'auto'}
531-
style={[StyleSheet.absoluteFillObject, showScreenStyle, { paddingVertical: 30 }]}
531+
style={[StyleSheet.absoluteFillObject, showScreenStyle]}
532532
>
533533
<Animated.View style={[StyleSheet.absoluteFillObject, containerBackground]} />
534534
<GestureDetector gesture={Gesture.Simultaneous(singleTap, doubleTap, pinch, pan)}>

package/src/components/ImageGallery/components/ImageGalleryFooter.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ const styles = StyleSheet.create({
328328
marginRight: 8,
329329
},
330330
wrapper: {
331-
bottom: 30,
331+
bottom: 0,
332332
left: 0,
333333
position: 'absolute',
334334
right: 0,

0 commit comments

Comments
 (0)