File tree Expand file tree Collapse file tree 2 files changed +10
-7
lines changed Expand file tree Collapse file tree 2 files changed +10
-7
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " material-ui-layout" ,
3
- "version" : " 0.1.0-rc.1 " ,
3
+ "version" : " 0.1.0-rc.2 " ,
4
4
"description" : " Layout components for material-ui" ,
5
5
"main" : " ./lib/index.js" ,
6
6
"scripts" : {
Original file line number Diff line number Diff line change @@ -35,6 +35,7 @@ const styles = theme => ({
35
35
main : {
36
36
paddingTop : '0px' ,
37
37
display : 'flex' ,
38
+ width : '100%' ,
38
39
transition : theme . transitions . create ( [ 'margin' , 'width' ] , {
39
40
easing : theme . transitions . easing . sharp ,
40
41
duration : theme . transitions . duration . leavingScreen ,
@@ -60,24 +61,26 @@ const styles = theme => ({
60
61
} ,
61
62
[ theme . breakpoints . up ( 'sm' ) ] : {
62
63
mainFixedAppBar : {
63
- marginTop : `${ theme . mixins . toolbar [ theme . breakpoints . up ( 'sm' ) ]
64
- . minHeight } px`,
64
+ marginTop : `${
65
+ theme . mixins . toolbar [ theme . breakpoints . up ( 'sm' ) ] . minHeight
66
+ } px`,
65
67
} ,
66
68
mainFixedTwoRowAppBar : {
67
69
marginTop : `${ theme . mixins . toolbar [ theme . breakpoints . up ( 'sm' ) ] . minHeight *
68
70
2 } px`,
69
71
} ,
70
72
mainGrow : {
71
- height : `calc(100vh - ${ theme . mixins . toolbar [ theme . breakpoints . up ( 'sm' ) ]
72
- . minHeight } px)`,
73
+ height : `calc(100vh - ${
74
+ theme . mixins . toolbar [ theme . breakpoints . up ( 'sm' ) ] . minHeight
75
+ } px)`,
73
76
} ,
74
77
mainGrowTwoRowAppBar : {
75
78
height : `calc(100vh - ${ theme . mixins . toolbar [ theme . breakpoints . up ( 'sm' ) ]
76
79
. minHeight * 2 } px)`,
77
80
} ,
78
81
drawerHeaderTwoRowAppBar : {
79
- minHeight : `${ theme . mixins . toolbar [ theme . breakpoints . up ( 'sm' ) ]
80
- . minHeight * 2 } px`,
82
+ minHeight : `${ theme . mixins . toolbar [ theme . breakpoints . up ( 'sm' ) ] . minHeight *
83
+ 2 } px`,
81
84
} ,
82
85
} ,
83
86
mainStickyFooter : {
You can’t perform that action at this time.
0 commit comments