From d9205bb405446ef5577952ea7562b0047a06df2c Mon Sep 17 00:00:00 2001 From: QiShaoXuan Date: Thu, 3 Nov 2022 14:13:58 +0800 Subject: [PATCH] fix: mobile modal background is error in dark mode --- packages/app/src/components/mobile-modal/styles.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/app/src/components/mobile-modal/styles.ts b/packages/app/src/components/mobile-modal/styles.ts index dc2a9ba79..14347f737 100644 --- a/packages/app/src/components/mobile-modal/styles.ts +++ b/packages/app/src/components/mobile-modal/styles.ts @@ -5,7 +5,7 @@ export const ModalWrapper = styled.div(({ theme }) => { return { width: '348px', height: '388px', - background: '#FFFFFF', + background: theme.colors.popoverBackground, borderRadius: '28px', position: 'relative', backgroundImage: `url(${bg.src})`,