Skip to content

Commit

Permalink
fix(scrolling): fix scrolling when height too small
Browse files Browse the repository at this point in the history
  • Loading branch information
jjBlockchain committed Jun 27, 2023
1 parent 8da7c65 commit cfc4349
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ const Page = styled.div`
height: 100%;
min-height: 100%;
width: 100%;
overflow: scroll;
> div:first-child {
z-index: 1;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const FlexContainer = styled.div`
justify-items: center;
justify-content: center;
width: 100%;
padding-top: 72px;
padding: 72px 0;
`

export const PageWrapper = ({ children }: { children: React.ReactNode }) => (
Expand Down

0 comments on commit cfc4349

Please sign in to comment.