Slightly increase the hitslop for post controls

This commit is contained in:
Paul Frazee
2023-01-31 08:31:34 -06:00
parent c9c4a107f2
commit 0d8a7cd816
+1 -1
View File
@@ -39,7 +39,7 @@ interface PostCtrlsOpts {
onDeletePost: () => void
}
const HITSLOP = {top: 2, left: 2, bottom: 2, right: 2}
const HITSLOP = {top: 5, left: 5, bottom: 5, right: 5}
export function PostCtrls(opts: PostCtrlsOpts) {
const theme = useTheme()