aboutsummaryrefslogtreecommitdiff
path: root/src/components/notifications/Notification.tsx
diff options
context:
space:
mode:
authorIvan Chen <ivan@tagg.id>2021-02-03 16:26:08 -0500
committerIvan Chen <ivan@tagg.id>2021-02-03 16:26:08 -0500
commitc75ed458a0ce5cacd522b8ba0ec8979b27f9aa65 (patch)
tree442db6a18b6b59deecabe77bf88b1ce9677ea934 /src/components/notifications/Notification.tsx
parentb24c549932fa4091d99b261c1b3e9e8460d77dc4 (diff)
fixed border line issue
Diffstat (limited to 'src/components/notifications/Notification.tsx')
-rw-r--r--src/components/notifications/Notification.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/notifications/Notification.tsx b/src/components/notifications/Notification.tsx
index 6ee04108..951a5bf6 100644
--- a/src/components/notifications/Notification.tsx
+++ b/src/components/notifications/Notification.tsx
@@ -259,7 +259,7 @@ const Notification: React.FC<NotificationProps> = (props) => {
const styles = StyleSheet.create({
container: {
flexDirection: 'row',
- height: SCREEN_HEIGHT / 10,
+ height: Math.round(SCREEN_HEIGHT / 10),
flex: 1,
alignItems: 'center',
},