Skip to content

Commit

Permalink
updated footer
Browse files Browse the repository at this point in the history
The footer now shows under the content for all pages. The user page under export now shows footer under it instead of cutting it off.
  • Loading branch information
courtneyc1 committed Sep 13, 2023
1 parent 631ff77 commit 3bd72f1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/components/Footer/styleFooter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export const footerClasses = {
};
export const FooterRoot = styled('div')(({ theme }) => ({
[`& .${footerClasses.footerBox}`]: {
position: 'absolute',
position: 'sticky',
bottom: 0,
width: '100%',
backgroundColor: theme.palette.primary.main
Expand All @@ -21,7 +21,7 @@ export const FooterRoot = styled('div')(({ theme }) => ({
alignItems: 'center',
justifyContent: 'center',
margin: '0 auto',
maxWidth: '1444px'
maxWidth: '1444px',
},
[`& .${footerClasses.footerLogo}`]: {
display: 'flex',
Expand Down
1 change: 1 addition & 0 deletions frontend/src/components/FooterOriginal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ export const CrossfeedFooter: React.FC = () => {
alignItems={'center'}
justifyContent={'center'}
style={{
position: 'sticky',
margin: '0 auto',
marginTop: '1rem',
maxWidth: '1444px'
Expand Down

0 comments on commit 3bd72f1

Please sign in to comment.