Skip to content

Commit

Permalink
edit
Browse files Browse the repository at this point in the history
  • Loading branch information
SeungJL committed Oct 24, 2024
1 parent afb699a commit 5fe9879
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion components/atoms/ButtonWrapper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ function ButtonWrapper({ children, onClick, url, size = "md" }: ButtonWrapperPro
alignItems="center"
onClick={onClick}
>
,<Box>{children}</Box>
<Box>{children}</Box>
</Button>
)}
</>
Expand Down
6 changes: 3 additions & 3 deletions pageTemplates/square/SecretSquare/SecretSquareComments.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -116,16 +116,16 @@ function SecretSquareComments({ author, comments, refetch }: SecretSquareComment
</Flex>
</Slide>
<Box
h={`calc(60px + ${iPhoneNotchSize()}px)`}
h={"60px"}
position="fixed"
borderTop="var(--border-main)"
borderTop="var(--border)"
bottom="0"
flex={1}
w="100%"
backgroundColor="white"
p="16px"
marginBottom={`calc(16px + ${iPhoneNotchSize()}px)`}
borderBottom="var(--border-main)"
borderBottom="var(--border)"
maxW="var(--max-width)"
>
<UserCommentInput user={SECRET_USER_SUMMARY} onSubmit={onSubmit} type="message" />
Expand Down
6 changes: 3 additions & 3 deletions pages/chat/[uid].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -150,11 +150,11 @@ function Uid() {
</Flex>
</Slide>
<Box
h={`calc(60px + ${iPhoneNotchSize()}px)`}
borderBottom="var(--border-main)"
h={`60px`}
borderBottom="var(--border)"
position="fixed"
marginBottom={`calc(16px + ${iPhoneNotchSize()}px)`}
borderTop="var(--border-main)"
borderTop="var(--border)"
bottom="0"
flex={1}
w="100%"
Expand Down

0 comments on commit 5fe9879

Please sign in to comment.