about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorSamuel Newman <mozzius@protonmail.com>2024-06-18 23:53:54 +0100
committerGitHub <noreply@github.com>2024-06-19 01:53:54 +0300
commit2237e10ad256d7271c2b4a0292216b23aa94e07f (patch)
tree15431fe1a34a81714841d082f7564ed746d748ce /src
parentc92ef2fe31c6fcafa9bcb398562bc10191b3f4e4 (diff)
downloadvoidsky-2237e10ad256d7271c2b4a0292216b23aa94e07f.tar.zst
fix gap between tab bar and its border (#4538)
Diffstat (limited to 'src')
-rw-r--r--src/view/com/pager/TabBar.tsx4
1 files changed, 2 insertions, 2 deletions
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,
   },
 })