Skip to content

Commit

Permalink
refactor(ShareModal): spacing 적용
Browse files Browse the repository at this point in the history
  • Loading branch information
jinyoung234 committed Aug 21, 2024
1 parent 17a7145 commit f7be8f3
Showing 1 changed file with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
import { css } from "@emotion/react";
import styled from "@emotion/styled";

import theme from "@styles/theme";

export const ShareInputContainer = styled.div`
position: relative;
width: 29rem;
margin-bottom: 1.6rem;
margin-bottom: ${({ theme }) => theme.spacing.m};
`;

export const TTuriImg = styled.img`
Expand All @@ -13,7 +15,7 @@ export const TTuriImg = styled.img`
`;

export const shareModalBodyStyle = css`
gap: 1.6rem;
gap: ${theme.spacing.m};
`;

export const textBoldStyle = css`
Expand All @@ -29,8 +31,8 @@ export const notOutlineStyle = css`

export const copyUrlButtonStyle = css`
position: absolute;
top: 0.8rem;
right: 1.6rem;
top: ${theme.spacing.s};
right: ${theme.spacing.m};
width: 4rem;
height: 2.4rem;
Expand Down

0 comments on commit f7be8f3

Please sign in to comment.