diff --git a/src/components/atomComponents/Button.tsx b/src/components/atomComponents/Button.tsx index d225e358..8428104a 100644 --- a/src/components/atomComponents/Button.tsx +++ b/src/components/atomComponents/Button.tsx @@ -99,6 +99,11 @@ const buttonCSS = { background-color: transparent; color: ${({ theme }) => theme.colors.grey6}; `, + quaternaryDisabled: css` + ${buttonDefaultCSS.basicCss}; + background: ${({ theme }) => theme.colors.grey7}; + color: ${({ theme }) => theme.colors.grey2}; + `, }; const ButtonWrapper = styled.button<{ $type: string }>` @@ -126,6 +131,8 @@ const ButtonWrapper = styled.button<{ $type: string }>` return buttonCSS.tertiaryDisabled; case 'halfPrimaryDisabled': return buttonCSS.halfPrimaryDisabled; + case 'quaternaryDisabled': + return buttonCSS.quaternaryDisabled; default: return ''; } diff --git a/src/pages/SteppingStone/components/SteppingBtnSection.tsx b/src/pages/SteppingStone/components/SteppingBtnSection.tsx index eb23c866..b44ede21 100644 --- a/src/pages/SteppingStone/components/SteppingBtnSection.tsx +++ b/src/pages/SteppingStone/components/SteppingBtnSection.tsx @@ -40,7 +40,7 @@ function SteppingBtnSection({ steppingType }: SteppingProps) { 링크 복사하기 -