From 833cc8b9a7d6a25b5dd00ff93881bc5ae86fec83 Mon Sep 17 00:00:00 2001 From: jhynsoo Date: Wed, 25 Oct 2023 18:40:12 +0900 Subject: [PATCH] style: Add background color --- src/styles/Themes.styles.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/styles/Themes.styles.js b/src/styles/Themes.styles.js index 3d23e04..40af524 100644 --- a/src/styles/Themes.styles.js +++ b/src/styles/Themes.styles.js @@ -21,6 +21,7 @@ const boxShadow = css` border-radius: 10px; border: 1px solid ${({ theme }) => theme.colors.gray200}; box-shadow: 0px 4px 20px 0px #2060ee1a; + background-color: ${({ theme }) => theme.colors.background}; transition: all 0.3s ease; `;