diff options
author | Ivan Chen <ivan@tagg.id> | 2021-02-03 16:26:08 -0500 |
---|---|---|
committer | Ivan Chen <ivan@tagg.id> | 2021-02-03 16:26:08 -0500 |
commit | c75ed458a0ce5cacd522b8ba0ec8979b27f9aa65 (patch) | |
tree | 442db6a18b6b59deecabe77bf88b1ce9677ea934 /src/components | |
parent | b24c549932fa4091d99b261c1b3e9e8460d77dc4 (diff) |
fixed border line issue
Diffstat (limited to 'src/components')
-rw-r--r-- | src/components/notifications/Notification.tsx | 2 |
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', }, |