Skip to content

Commit

Permalink
fix: 영역 좁히도록 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
lydiacho committed Aug 2, 2024
1 parent 2a81e71 commit 974350e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion src/views/CompletePage/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const CompletePage = () => {
key={v}
className={pointBoxVar[v === point ? 'selected' : 'default']}
onClick={() => handleClickPoint(v)}>
{v}
<span>{v}</span>
</li>
))}
</ul>
Expand Down
18 changes: 9 additions & 9 deletions src/views/CompletePage/style.css.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,23 +23,23 @@ export const icon = style({
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
marginBottom: '32px',
marginBottom: 20,
width: 66,
height: 66,
borderRadius: '50%',
background: theme.color.primaryLinear,
});

export const mainText = style({
marginBottom: 24,
marginBottom: 8,
color: theme.color.baseText,
textAlign: 'center',
whiteSpace: 'pre-line',
...theme.font.HEADING_2_32_B,
});

export const subText = style({
marginBottom: 50,
marginBottom: 30,
color: theme.color.baseText,
textAlign: 'center',
...theme.font.BODY_1_18_M,
Expand All @@ -50,9 +50,9 @@ export const surveyBox = style({
flexDirection: 'column',
justifyContent: 'center',
alignItems: 'center',
gap: 16,
padding: '30px 55px',
marginTop: 90,
gap: 12,
padding: '22px 75px',
marginTop: 50,
color: theme.color.lightestText,
...theme.font.BODY_2_16_M,
border: `1px solid ${theme.color.border}`,
Expand All @@ -68,9 +68,9 @@ const pointBox = style({
display: 'flex',
justifyContent: 'center',
alignItems: 'center',
width: 32,
height: 40,
borderRadius: 8,
width: 28,
height: 36,
borderRadius: 6,
transition: 'all 0.3s ease',
cursor: 'pointer',
});
Expand Down

0 comments on commit 974350e

Please sign in to comment.