File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ const Notification: FunctionComponent<Props> = (props) => {
45
45
return (
46
46
< Grid item xs style = { { height : "100%" } } >
47
47
< Paper className = { classes . paper } >
48
- < Grid container >
48
+ < Grid container style = { { fontWeight : 'bold' , marginBottom : '20px' } } >
49
49
{ headConfig . map ( o => (
50
50
< Grid item xs = { o . breakPoint } key = { o . key } > { o . label } </ Grid >
51
51
) ) }
@@ -54,6 +54,7 @@ const Notification: FunctionComponent<Props> = (props) => {
54
54
{ dataConfig . map ( ( obj : any , i :any ) => {
55
55
return headConfig . map ( o => (
56
56
< Grid item xs = { o . breakPoint }
57
+ style = { { marginBottom : '25px' } }
57
58
key = { o . key + i } >
58
59
{ ( o . render && o . render ( notificationById [ i ] , handleChange , i + "-" + o . key ) ) || obj [ o . key ] }
59
60
</ Grid >
You can’t perform that action at this time.
0 commit comments