From 2237e10ad256d7271c2b4a0292216b23aa94e07f Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Tue, 18 Jun 2024 23:53:54 +0100 Subject: fix gap between tab bar and its border (#4538) --- src/view/com/pager/TabBar.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/view/com/pager/TabBar.tsx b/src/view/com/pager/TabBar.tsx index e940e8d1a..1c83ecd6e 100644 --- a/src/view/com/pager/TabBar.tsx +++ b/src/view/com/pager/TabBar.tsx @@ -180,7 +180,7 @@ const desktopStyles = StyleSheet.create({ position: 'absolute', left: 0, right: 0, - bottom: -1, + top: '100%', borderBottomWidth: 1, }, }) @@ -207,7 +207,7 @@ const mobileStyles = StyleSheet.create({ position: 'absolute', left: 0, right: 0, - bottom: -1, + top: '100%', borderBottomWidth: hairlineWidth, }, }) -- cgit 1.4.1