Skip to content

Commit

Permalink
💄 style: fix footer being cut on wide screen (#2905)
Browse files Browse the repository at this point in the history
  • Loading branch information
phuctm97 authored Jun 17, 2024
1 parent c88a4b6 commit 3a1e0cf
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/app/(main)/welcome/_layout/Desktop.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,11 @@ const DesktopLayout = ({ children }: PropsWithChildren) => {
width={'100%'}
>
<Logo size={36} style={{ alignSelf: 'flex-start' }} type={'text'} />
<GridShowcase innerProps={{ gap: 24 }} style={{ maxWidth: 1024 }} width={'100%'}>
<GridShowcase
innerProps={{ gap: 24 }}
style={{ maxHeight: 'calc(100% - 104px)', maxWidth: 1024 }}
width={'100%'}
>
{children}
</GridShowcase>
<Flexbox align={'center'} horizontal justify={'space-between'}>
Expand Down

0 comments on commit 3a1e0cf

Please sign in to comment.