From 1b7a93dde0c8fb05d5908687a64c9be75ac61086 Mon Sep 17 00:00:00 2001 From: turtle601 Date: Mon, 31 Jul 2023 14:28:22 +0900 Subject: [PATCH] =?UTF-8?q?refactor:=20box=20shadow=20=EB=B3=80=EC=88=98?= =?UTF-8?q?=20=EC=82=AC=EC=9A=A9=20(#193)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/components/@common/InfoButton/InfoButton.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/@common/InfoButton/InfoButton.tsx b/frontend/src/components/@common/InfoButton/InfoButton.tsx index 69bdad9be..10f5f0ad2 100644 --- a/frontend/src/components/@common/InfoButton/InfoButton.tsx +++ b/frontend/src/components/@common/InfoButton/InfoButton.tsx @@ -36,11 +36,11 @@ const StyledInfoButton = styled.button` ${({ isShow }) => isShow && css` - box-shadow: 0 1px 2px rgb(0 0 0 / 15%); + box-shadow: var(--shadow); `} &:hover { - box-shadow: 0 1px 2px rgb(0 0 0 / 15%); + box-shadow: var(--shadow); transition: box-shadow 0.2s ease-in-out; }