Skip to content

Commit e023220

Browse files
committed
better code style
1 parent 5538798 commit e023220

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

src/components/Layout/styles.js

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,24 +61,26 @@ const styles = theme => ({
6161
},
6262
[theme.breakpoints.up('sm')]: {
6363
mainFixedAppBar: {
64-
marginTop: `${theme.mixins.toolbar[theme.breakpoints.up('sm')]
65-
.minHeight}px`,
64+
marginTop: `${
65+
theme.mixins.toolbar[theme.breakpoints.up('sm')].minHeight
66+
}px`,
6667
},
6768
mainFixedTwoRowAppBar: {
6869
marginTop: `${theme.mixins.toolbar[theme.breakpoints.up('sm')].minHeight *
6970
2}px`,
7071
},
7172
mainGrow: {
72-
height: `calc(100vh - ${theme.mixins.toolbar[theme.breakpoints.up('sm')]
73-
.minHeight}px)`,
73+
height: `calc(100vh - ${
74+
theme.mixins.toolbar[theme.breakpoints.up('sm')].minHeight
75+
}px)`,
7476
},
7577
mainGrowTwoRowAppBar: {
7678
height: `calc(100vh - ${theme.mixins.toolbar[theme.breakpoints.up('sm')]
7779
.minHeight * 2}px)`,
7880
},
7981
drawerHeaderTwoRowAppBar: {
80-
minHeight: `${theme.mixins.toolbar[theme.breakpoints.up('sm')]
81-
.minHeight * 2}px`,
82+
minHeight: `${theme.mixins.toolbar[theme.breakpoints.up('sm')].minHeight *
83+
2}px`,
8284
},
8385
},
8486
mainStickyFooter: {

0 commit comments

Comments
 (0)