fix(toolbox): Constrain toolbox width on large mobile device
This commit is contained in:
parent
096ee3cb53
commit
d214079148
|
@ -65,6 +65,7 @@ const styles = {
|
||||||
toolbar: {
|
toolbar: {
|
||||||
alignItems: 'center',
|
alignItems: 'center',
|
||||||
backgroundColor: ColorPalette.darkBackground,
|
backgroundColor: ColorPalette.darkBackground,
|
||||||
|
borderRadius: 3,
|
||||||
flexDirection: 'row',
|
flexDirection: 'row',
|
||||||
flexGrow: 0,
|
flexGrow: 0,
|
||||||
justifyContent: 'space-between',
|
justifyContent: 'space-between',
|
||||||
|
@ -77,7 +78,11 @@ const styles = {
|
||||||
*/
|
*/
|
||||||
toolbox: {
|
toolbox: {
|
||||||
flexDirection: 'column',
|
flexDirection: 'column',
|
||||||
flexGrow: 0
|
flexGrow: 0,
|
||||||
|
width: '100%',
|
||||||
|
maxWidth: 500,
|
||||||
|
marginLeft: 'auto',
|
||||||
|
marginRight: 'auto'
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue