diff options
author | Samuel Newman <mozzius@protonmail.com> | 2024-10-28 18:50:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-28 16:50:28 +0000 |
commit | d19c505d8155ee9ab781b5a70447b735915709f3 (patch) | |
tree | 6f1d80a308913377ddad7f7d42bb750a13396a2f /src/view/shell/Drawer.tsx | |
parent | 1c992beff6f9a30b9ecd25f6b9b7ad4f00459222 (diff) | |
download | voidsky-d19c505d8155ee9ab781b5a70447b735915709f3.tar.zst |
drawer border (#5893)
Diffstat (limited to 'src/view/shell/Drawer.tsx')
-rw-r--r-- | src/view/shell/Drawer.tsx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/view/shell/Drawer.tsx b/src/view/shell/Drawer.tsx index 91f4771d2..0a3b4cfdf 100644 --- a/src/view/shell/Drawer.tsx +++ b/src/view/shell/Drawer.tsx @@ -222,7 +222,9 @@ let DrawerContent = ({}: {}): React.ReactNode => { // = return ( - <View testID="drawer" style={[a.flex_1, t.atoms.bg]}> + <View + testID="drawer" + style={[a.flex_1, a.border_r, t.atoms.bg, t.atoms.border_contrast_low]}> <ScrollView style={[a.flex_1]} contentContainerStyle={[ |