Skip to content

Commit

Permalink
Footer cutting off bottom of all pages (#2347)
Browse files Browse the repository at this point in the history
* Updated from 'absolute' to 'fix'

* update 'fix' to 'relative' and add top: 20px
  • Loading branch information
courtneyc1 authored Oct 25, 2023
1 parent 6bfba99 commit 8dc75e6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion frontend/src/components/Footer/styleFooter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ export const footerClasses = {
};
export const FooterRoot = styled('div')(({ theme }) => ({
[`& .${footerClasses.footerBox}`]: {
position: 'absolute',
position: 'relative',
top: '20px',
bottom: 0,
width: '100%',
backgroundColor: theme.palette.primary.main
Expand Down

0 comments on commit 8dc75e6

Please sign in to comment.