aboutsummaryrefslogtreecommitdiff
path: root/src/components/notifications/Notification.tsx
diff options
context:
space:
mode:
authorMichael <michael.foiani@gmail.com>2021-07-13 16:03:20 -0400
committerMichael <michael.foiani@gmail.com>2021-07-13 16:03:20 -0400
commit3c846d45ada4929fae6493c4704c70544c7941a3 (patch)
tree3bcd9328ce86d1bb22f71736ac1a7df3af8f6905 /src/components/notifications/Notification.tsx
parentc51abe84b279402c3b3ad541e2af80754d0c67e7 (diff)
parent68f05afdf2d4ca29df60761c3d8f8ee445c1804d (diff)
Merged with new master.
Diffstat (limited to 'src/components/notifications/Notification.tsx')
-rw-r--r--src/components/notifications/Notification.tsx11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/components/notifications/Notification.tsx b/src/components/notifications/Notification.tsx
index fd1b11ac..946f2164 100644
--- a/src/components/notifications/Notification.tsx
+++ b/src/components/notifications/Notification.tsx
@@ -314,7 +314,11 @@ const Notification: React.FC<NotificationProps> = (props) => {
<TouchableWithoutFeedback
style={styles.moment}
onPress={onNotificationTap}>
- <Image style={styles.imageFlex} source={{uri: momentURI}} />
+ <Image
+ style={styles.imageFlex}
+ source={{uri: momentURI}}
+ resizeMode={'contain'}
+ />
</TouchableWithoutFeedback>
)}
</View>
@@ -357,8 +361,9 @@ const styles = StyleSheet.create({
lineHeight: normalize(14.32),
},
moment: {
- height: normalize(42),
- width: normalize(42),
+ height: normalize(72),
+ width: normalize(40),
+ backgroundColor: 'black',
},
buttonsContainer: {
height: '80%',