Skip to content

Commit

Permalink
Fix gap between Write Your Reply and bottom bar on web (#6783)
Browse files Browse the repository at this point in the history
* Fix gap between Write Your Reply and bottom bar on web

* rm log
  • Loading branch information
gaearon authored Nov 27, 2024
1 parent 6a29296 commit 763a5d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/view/com/post-thread/PostThread.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -544,7 +544,7 @@ function MobileComposePrompt({onPressReply}: {onPressReply: () => unknown}) {
styles.prompt,
fabMinimalShellTransform,
{
bottom: clamp(safeAreaInsets.bottom, 15, 30),
bottom: clamp(safeAreaInsets.bottom, 13, 30),
},
]}>
<PostThreadComposePrompt onPressCompose={onPressReply} />
Expand Down

0 comments on commit 763a5d5

Please sign in to comment.