Skip to content

Commit

Permalink
Allow for sticky submit button div
Browse files Browse the repository at this point in the history
  • Loading branch information
caleballdrin committed Jun 20, 2024
1 parent 7c65ab5 commit 4fc484e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/GlobalStyles/GlobalStyles.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ const useStyles = makeStyles(() =>
'-moz-osx-font-smoothing': 'grayscale',
height: '100%',
width: '100%',
overflow: 'hidden',
},
body: {
height: '100%',
minHeight: '100vh',
width: '100%',
},
'#__next': {
Expand Down
2 changes: 0 additions & 2 deletions src/components/Layouts/Primary/Primary.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,11 @@ const RootContainer = styled('div')(({ theme }) => ({

const ContentContainer = styled('div')(() => ({
display: 'flex',
overflow: 'hidden',
}));

const Content = styled('div')(() => ({
flex: '1 1 auto',
height: '100%',
overflow: 'auto',
}));

interface Props {
Expand Down

0 comments on commit 4fc484e

Please sign in to comment.