diff options
author | Hailey <me@haileyok.com> | 2024-09-26 12:57:54 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-26 12:57:54 -0700 |
commit | a61b75be57a5ec62a057359978b406684be8e345 (patch) | |
tree | f0b3f352c2aa9ecb1991b406e3fec7a603a4424d /src | |
parent | 7ee67e4e7e10a808f8e885efea4caf0465ee9619 (diff) | |
download | voidsky-a61b75be57a5ec62a057359978b406684be8e345.tar.zst |
Add margin to bottom of search input (#5510)
Diffstat (limited to 'src')
-rw-r--r-- | src/view/screens/Search/Search.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/screens/Search/Search.tsx b/src/view/screens/Search/Search.tsx index 36639e7ed..de46d18c0 100644 --- a/src/view/screens/Search/Search.tsx +++ b/src/view/screens/Search/Search.tsx @@ -985,7 +985,7 @@ let SearchInputBox = ({ const t = useThemeNew() return ( - <View style={[a.flex_1, a.relative]}> + <View style={[a.flex_1, a.mb_sm]}> <TextField.Root> <TextField.Icon icon={MagnifyingGlass} /> <TextField.Input |