Skip to content

Commit 5f4d86e

Browse files
committed
Make footer different color and remove content padding bottom
1 parent d9ea0a2 commit 5f4d86e

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

packages/react-renderer-demo/src/app/src/components/footer.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ import Paper from '@material-ui/core/Paper';
1313
import SvgIcon from '@material-ui/core/SvgIcon';
1414
import Typography from '@material-ui/core/Typography';
1515

16+
import grey from '@material-ui/core/colors/grey';
17+
1618
import GhIcon from './common/gh-svg-icon';
1719
import NpmSvgIcon from './common/npm-svg-icon';
1820
import TwitterIcon from './common/twitter-svg-icon';
@@ -43,6 +45,7 @@ const drawerWidth = 240;
4345
const useStyles = makeStyles((theme) => ({
4446
footer: {
4547
marginTop: 64,
48+
backgroundColor: grey[200],
4649
display: 'flex',
4750
justifyContent: 'space-between',
4851
flexWrap: 'wrap',

packages/react-renderer-demo/src/app/src/components/layout.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,7 @@ const useStyles = makeStyles((theme) => ({
5555
})
5656
},
5757
contentWrapper: {
58-
paddingTop: 86,
59-
paddingBottom: 32
58+
paddingTop: 86
6059
},
6160
menuButton: {
6261
marginRight: theme.spacing(2)

0 commit comments

Comments
 (0)