diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-03-07 17:17:44 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-07 17:17:44 -0600 |
commit | 181121b4519e6958fc0698b40c39456d54e0d8d2 (patch) | |
tree | 6808b27cd24d4a51027cde0dc00e9ed979361b35 /src/view/com/util/ViewHeader.tsx | |
parent | e74f94bc72cdbb2282096b8d36677ba6655ab5be (diff) | |
download | voidsky-181121b4519e6958fc0698b40c39456d54e0d8d2.tar.zst |
Another set of UI updates (FAB returns, a few others) (#281)
* Bring back the FAB and move compose out of the footer * Increase the touch target sizes of the header back btns (close #279) * Trigger 'load more' sooner (close #280)
Diffstat (limited to 'src/view/com/util/ViewHeader.tsx')
-rw-r--r-- | src/view/com/util/ViewHeader.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/com/util/ViewHeader.tsx b/src/view/com/util/ViewHeader.tsx index fe195c7b1..ffd1b1d63 100644 --- a/src/view/com/util/ViewHeader.tsx +++ b/src/view/com/util/ViewHeader.tsx @@ -10,7 +10,7 @@ import {useAnimatedValue} from 'lib/hooks/useAnimatedValue' import {useAnalytics} from 'lib/analytics' import {isDesktopWeb} from '../../../platform/detection' -const BACK_HITSLOP = {left: 10, top: 10, right: 30, bottom: 10} +const BACK_HITSLOP = {left: 20, top: 20, right: 50, bottom: 20} export const ViewHeader = observer(function ViewHeader({ title, |