Skip to content

Commit

Permalink
fix: protoform wrapper minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
HZ991 committed Jan 9, 2025
1 parent 772bbc9 commit dc30482
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export function ContentWrapper({ children }: { children: ReactNode }) {
return (
<section
className={clsx(
'min-h-[100vh] before:pointer-events-none before:fixed before:inset-x-auto before:top-[66px] before:block before:h-1 before:bg-gradient-to-b before:from-black/[.2] before:from-0% before:opacity-0 before:transition-[opacity] before:duration-200 before:will-change-[opacity]',
'before:pointer-events-none before:fixed before:inset-x-auto before:top-[66px] before:block before:h-1 before:bg-gradient-to-b before:from-black/[.2] before:from-0% before:opacity-0 before:transition-[opacity] before:duration-200 before:will-change-[opacity]',
{
'md:mr-[300px] before:right-[300px]': open,
'md:before:opacity-0': scrolled,
Expand All @@ -40,7 +40,7 @@ export function ContentWrapper({ children }: { children: ReactNode }) {
id="content-wrapper"
>
<GridContainer>
<Grid className="h-screen">
<Grid className="h-fit min-h-[90vh]">
<GridItem span={{ initial: 12, sm: 8, md: 8, lg: 6 }} start={{ initial: 1, sm: 3, md: 3, lg: 4 }}>
<div className="md:h-10 overscroll-x-none"></div>
{children}
Expand Down

0 comments on commit dc30482

Please sign in to comment.