Skip to content

Commit

Permalink
Bump clamp max value (#7198)
Browse files Browse the repository at this point in the history
  • Loading branch information
gaearon authored Dec 19, 2024
1 parent 7f63679 commit ab0697a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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 @@ -714,7 +714,7 @@ function MobileComposePrompt({onPressReply}: {onPressReply: () => unknown}) {
styles.prompt,
fabMinimalShellTransform,
{
bottom: clamp(safeAreaInsets.bottom, 13, 30),
bottom: clamp(safeAreaInsets.bottom, 13, 60),
},
]}>
<PostThreadComposePrompt onPressCompose={onPressReply} />
Expand Down
2 changes: 1 addition & 1 deletion src/view/shell/bottom-bar/BottomBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ export function BottomBar({navigation}: BottomTabBarProps) {
styles.bottomBar,
pal.view,
pal.border,
{paddingBottom: clamp(safeAreaInsets.bottom, 15, 30)},
{paddingBottom: clamp(safeAreaInsets.bottom, 15, 60)},
footerMinimalShellTransform,
]}
onLayout={e => {
Expand Down

0 comments on commit ab0697a

Please sign in to comment.