@@ -319,15 +319,15 @@ const Dashboard = ({ classes, theme, ...props }) => {
319
319
< div className = { classes . mainChartHeaderLabels } >
320
320
< div className = { classes . mainChartHeaderLabel } >
321
321
< Dot color = "warning" />
322
- < Typography > Tablet</ Typography >
322
+ < Typography className = { classes . mainChartLegentElement } > Tablet</ Typography >
323
323
</ div >
324
324
< div className = { classes . mainChartHeaderLabel } >
325
325
< Dot color = "primary" />
326
- < Typography > Mobile</ Typography >
326
+ < Typography className = { classes . mainChartLegentElement } > Mobile</ Typography >
327
327
</ div >
328
328
< div className = { classes . mainChartHeaderLabel } >
329
329
< Dot color = "primary" />
330
- < Typography > Desktop</ Typography >
330
+ < Typography className = { classes . mainChartLegentElement } > Desktop</ Typography >
331
331
</ div >
332
332
</ div >
333
333
< Select
@@ -471,7 +471,6 @@ const styles = theme => ({
471
471
legendElement : {
472
472
display : "flex" ,
473
473
alignItems : "center" ,
474
- marginRight : theme . spacing . unit * 2
475
474
} ,
476
475
legendElementText : {
477
476
marginLeft : theme . spacing . unit
@@ -492,23 +491,37 @@ const styles = theme => ({
492
491
width : "100%" ,
493
492
display : "flex" ,
494
493
alignItems : "center" ,
495
- justifyContent : "space-between"
494
+ justifyContent : "space-between" ,
495
+ [ theme . breakpoints . only ( "xs" ) ] : {
496
+ flexWrap : 'wrap' ,
497
+ }
496
498
} ,
497
499
mainChartHeaderLabels : {
498
500
display : "flex" ,
499
- alignItems : "center"
501
+ alignItems : "center" ,
502
+ [ theme . breakpoints . only ( "xs" ) ] : {
503
+ order : 3 ,
504
+ width : '100%' ,
505
+ justifyContent : 'center' ,
506
+ marginTop : theme . spacing . unit ,
507
+ marginBottom : theme . spacing . unit ,
508
+ }
500
509
} ,
501
510
mainChartHeaderLabel : {
502
511
display : "flex" ,
503
512
alignItems : "center" ,
504
- marginLeft : theme . spacing . unit * 2
513
+ marginLeft : theme . spacing . unit * 3 ,
505
514
} ,
506
515
mainChartSelectRoot : {
507
516
borderColor : theme . palette . text . hint + '80 !important' ,
508
517
} ,
509
518
mainChartSelect : {
510
519
padding : 10 ,
511
520
paddingRight : 25
521
+ } ,
522
+ mainChartLegentElement : {
523
+ fontSize : '18px !important' ,
524
+ marginLeft : theme . spacing . unit ,
512
525
}
513
526
} ) ;
514
527
0 commit comments