Skip to content

Commit

Permalink
Fix bug in form layout
Browse files Browse the repository at this point in the history
  • Loading branch information
dostuffthatmatters committed Sep 12, 2021
1 parent 518da34 commit ae7568c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/layout/main-content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ function MainContent(props: {children: React.ReactNode}) {

return (
<React.Fragment>
<header className='relative top-0 left-0 w-full bg-gray-200 md:absolute flex-row-left'>
<header className='relative top-0 left-0 w-full bg-gray-200 md:bg-transparent md:absolute flex-row-left'>
<div className='h-12 m-4 lg:h-16'>
<Link
to={logoURL}
Expand All @@ -30,8 +30,8 @@ function MainContent(props: {children: React.ReactNode}) {
<main
className={
'w-screen min-h-screen px-2 bg-gray-200 ' +
'pb-12 pt-4 md:pb-26 ' +
'flex-col-top'
'pb-12 pt-4 md:pt-12 flex flex-col items-center ' +
'justify-start md:justify-center'
}
>
{props.children}
Expand Down

0 comments on commit ae7568c

Please sign in to comment.