Skip to content

Commit 04418da

Browse files
committed
fix: issues resolved
1 parent a4b87f7 commit 04418da

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/ValidationMessages.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ const alertStyles = makeStyles({
2323
alignItems: 'center',
2424
},
2525
},
26+
button: {
27+
color: '#f1645f'
28+
}
2629
});
2730

2831
const Validation = ({ validation }) => {
@@ -43,7 +46,7 @@ const Validation = ({ validation }) => {
4346
{validation.message}
4447
</span>
4548
{validation.rule === 'offline' && (
46-
<Button onClick={validation.callback}>
49+
<Button onClick={validation.callback} className={styles.button}>
4750
<Icon>{'autorenew'}</Icon>
4851
</Button>
4952
)}

0 commit comments

Comments
 (0)