Skip to content

Commit

Permalink
fix: 마지막화면 텍스트가 깨지는 현상 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
eunbae0 committed Feb 13, 2024
1 parent 369893b commit b773060
Showing 1 changed file with 17 additions and 10 deletions.
27 changes: 17 additions & 10 deletions src/components/pages/LastTimeline/LastTimeline.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,24 @@ const LastTimeline = () => {
flex-direction: column;
gap: 8px;
`}>
<div
css={css`
display: flex;
`}>
<Txt
label={user?.nickname ?? ''}
color={'primaryBrand'}
typograph={'headlineMedium'}
/>
<div>
<div
css={css`
display: flex;
`}>
<Txt
label={user?.nickname ?? ''}
color={'primaryBrand'}
typograph={'headlineMedium'}
/>
<Txt
label={'님의'}
color={'grey160'}
typograph={'headlineMedium'}
/>
</div>
<Txt
label={'님의 여정은 어떠셨나요?'}
label={'여정은 어떠셨나요?'}
color={'grey160'}
typograph={'headlineMedium'}
/>
Expand Down

0 comments on commit b773060

Please sign in to comment.