From 42b7be729883039b294eccc17ed5eec32e6439b9 Mon Sep 17 00:00:00 2001 From: yjin Date: Fri, 17 Jan 2025 12:03:14 +0900 Subject: [PATCH] fix: [GSW-2040] ConnectedSocialLogin Modal UI --- .../ConnectedSocialWalletModal.styles.ts | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/packages/web/src/components/common/connected-social-wallet-modal/ConnectedSocialWalletModal.styles.ts b/packages/web/src/components/common/connected-social-wallet-modal/ConnectedSocialWalletModal.styles.ts index d5d493b80..4ef45db3e 100644 --- a/packages/web/src/components/common/connected-social-wallet-modal/ConnectedSocialWalletModal.styles.ts +++ b/packages/web/src/components/common/connected-social-wallet-modal/ConnectedSocialWalletModal.styles.ts @@ -142,6 +142,9 @@ export const ConnectedSocialWalletModalWrapper = styled.div` height: 57px; span { ${fonts.body7} + ${media.mobile} { + font-size: 16px; + } } } .cancel-button { @@ -154,9 +157,26 @@ export const ConnectedSocialWalletModalWrapper = styled.div` &:hover { color: ${({ theme }) => theme.color.text04}; } + ${media.mobile} { + font-size: 14px; + } } } } } } + + ${media.mobile} { + padding: 12px; + width: 328px; + .modal-body { + gap: 12px; + .content { + /* gap: 16px; */ + .button-wrapper { + gap: 12px; + } + } + } + } `;