Skip to content

Commit

Permalink
fix: 키패드가 없는 경우(열리지 않은 경우) 노치 사이즈 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
ojj1123 committed Oct 24, 2024
1 parent 47a2f94 commit 723c99e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pageTemplates/square/SecretSquare/SecretSquareComments.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ function SecretSquareComments({ author, comments, refetch }: SecretSquareComment
backgroundColor="white"
px="16px"
pt="16px"
pb={`calc(16px + ${keypadHeight === 0 ? 0 : iPhoneNotchSize()}px)`}
pb={`calc(16px + ${keypadHeight === 0 ? iPhoneNotchSize() : 0}px)`}
borderBottom="var(--border)"
maxW="var(--max-width)"
>
Expand Down

0 comments on commit 723c99e

Please sign in to comment.