Skip to content

Commit

Permalink
fix: Fix Pending Image Border Style
Browse files Browse the repository at this point in the history
  • Loading branch information
sternetj committed May 21, 2024
1 parent 9ef1ade commit 5663dac
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/screens/DirectMessagesScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -371,6 +371,7 @@ export const DirectMessagesScreen = ({
pendingImages.length
? () => (
<ScrollView
style={styles.pendingImagesScrollView}
contentContainerStyle={styles.pendingImagesContainer}
horizontal
>
Expand Down Expand Up @@ -605,10 +606,12 @@ const defaultStyles = createStyles('DirectMessagesScreen', (theme) => ({
},
footer: {},
accessoryContainer: {},
pendingImagesScrollView: {
borderTopWidth: 1,
borderTopColor: theme.colors.outlineVariant,
},
pendingImagesContainer: {
height: 68,
borderTopWidth: 1,
borderTopColor: 'lightgrey',
justifyContent: 'flex-start',
gap: 8,
paddingHorizontal: 8,
Expand Down

0 comments on commit 5663dac

Please sign in to comment.