fix gap between tab bar and its border (#4538)

zio/stable
Samuel Newman 2024-06-18 23:53:54 +01:00 committed by GitHub
parent c92ef2fe31
commit 2237e10ad2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -180,7 +180,7 @@ const desktopStyles = StyleSheet.create({
position: 'absolute', position: 'absolute',
left: 0, left: 0,
right: 0, right: 0,
bottom: -1, top: '100%',
borderBottomWidth: 1, borderBottomWidth: 1,
}, },
}) })
@ -207,7 +207,7 @@ const mobileStyles = StyleSheet.create({
position: 'absolute', position: 'absolute',
left: 0, left: 0,
right: 0, right: 0,
bottom: -1, top: '100%',
borderBottomWidth: hairlineWidth, borderBottomWidth: hairlineWidth,
}, },
}) })