From f24f7b30898d2e67916193f3bc48846128e43216 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Dro=C5=84?= Date: Tue, 26 Apr 2022 15:29:47 +0200 Subject: [PATCH] Fix unreadable alert boxes in dark mode (#2001) --- src/auth/components/styles.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/auth/components/styles.ts b/src/auth/components/styles.ts index 4ccecd98e..9dec74cbd 100644 --- a/src/auth/components/styles.ts +++ b/src/auth/components/styles.ts @@ -38,7 +38,7 @@ const useStyles = makeStyles( color: theme.palette.error.contrastText }, ...theme.typography.body1, - background: theme.palette.saleor.fail.light, + background: theme.palette.alert.paper.error, borderRadius: 8, marginBottom: theme.spacing(2), padding: theme.spacing(2.5)