Skip to content

Commit

Permalink
Update padding of Container and footer and ActivityList container
Browse files Browse the repository at this point in the history
  • Loading branch information
mikozet committed Sep 4, 2023
1 parent d2a9284 commit bf603a8
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/ActivityStream.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ const ActivityStreamList = ({
}

return (
<Grid container spacing={2}>
<Grid container spacing={2} style={{ paddingBottom: '32px' }}>
{activities.reduce(
(
acc,
Expand Down
2 changes: 1 addition & 1 deletion src/components/Footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import React from 'react';

const Footer = (props) => {
return (
<Box component="footer" mt="auto" p={2}>
<Box component="footer" mt="auto" p={'32px'}>
{props.children}
</Box>
);
Expand Down
8 changes: 8 additions & 0 deletions src/styles/theme.js
Original file line number Diff line number Diff line change
Expand Up @@ -347,6 +347,14 @@ export default createTheme({
},
},
components: {
MuiContainer: {
styleOverrides: {
root: {
paddingLeft: '32px',
paddingRight: '32px',
},
},
},
MuiCssBaseline: {
styleOverrides: `
@font-face {
Expand Down

0 comments on commit bf603a8

Please sign in to comment.