Skip to content

Commit 2b262e3

Browse files
committed
notifications styles
1 parent e46e550 commit 2b262e3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/features/Settings/Notification.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ const Notification: FunctionComponent<Props> = (props) => {
4545
return (
4646
<Grid item xs style={{ height: "100%" }}>
4747
<Paper className={classes.paper}>
48-
<Grid container>
48+
<Grid container style={{fontWeight: 'bold', marginBottom: '20px'}}>
4949
{headConfig.map(o => (
5050
<Grid item xs={o.breakPoint} key={o.key}>{o.label}</Grid>
5151
))}
@@ -54,6 +54,7 @@ const Notification: FunctionComponent<Props> = (props) => {
5454
{dataConfig.map((obj: any, i:any) => {
5555
return headConfig.map(o => (
5656
<Grid item xs={o.breakPoint}
57+
style={{marginBottom: '25px'}}
5758
key={o.key + i}>
5859
{(o.render && o.render(notificationById[i], handleChange, i + "-" + o.key)) || obj[o.key]}
5960
</Grid>

0 commit comments

Comments
 (0)