Skip to content
This repository was archived by the owner on Aug 5, 2025. It is now read-only.

Commit 65a4f30

Browse files
authored
Merge pull request #561 from lifeomic/fix-pending-images-style
fix: Fix Pending Image Border Style
2 parents 96809c3 + 5663dac commit 65a4f30

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

src/screens/DirectMessagesScreen.tsx

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -371,6 +371,7 @@ export const DirectMessagesScreen = ({
371371
pendingImages.length
372372
? () => (
373373
<ScrollView
374+
style={styles.pendingImagesScrollView}
374375
contentContainerStyle={styles.pendingImagesContainer}
375376
horizontal
376377
>
@@ -605,10 +606,12 @@ const defaultStyles = createStyles('DirectMessagesScreen', (theme) => ({
605606
},
606607
footer: {},
607608
accessoryContainer: {},
609+
pendingImagesScrollView: {
610+
borderTopWidth: 1,
611+
borderTopColor: theme.colors.outlineVariant,
612+
},
608613
pendingImagesContainer: {
609614
height: 68,
610-
borderTopWidth: 1,
611-
borderTopColor: 'lightgrey',
612615
justifyContent: 'flex-start',
613616
gap: 8,
614617
paddingHorizontal: 8,

0 commit comments

Comments
 (0)