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; }