Skip to content

Commit

Permalink
fix: PostCreatePage style
Browse files Browse the repository at this point in the history
  • Loading branch information
GanghyeonSeo committed Jun 7, 2024
1 parent 308c950 commit e8e1b52
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions src/pages/PostCreatePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const PostCreatePage = () => {
display: 'flex',
flexDirection: 'column',
justifyContent: 'space-around',
alignItems: 'flex-end',
alignItems: 'center',
}}
>
<Box
Expand Down Expand Up @@ -122,7 +122,12 @@ const PostCreatePage = () => {
alignItems: 'center',
}}
>
<Text style={{ width: '300px', textAlign: 'left' }}>
<Text
style={{
width: imageUrls.length > 1 ? '600px' : '300px',
textAlign: 'left',
}}
>
Selected LookBooks
</Text>
<Box
Expand All @@ -131,7 +136,7 @@ const PostCreatePage = () => {
bd="1px solid black"
display="flex"
style={{
width: '300px',
width: imageUrls.length > 1 ? '600px' : '300px',
height: '76%',
overflow: 'auto',
}}
Expand Down

0 comments on commit e8e1b52

Please sign in to comment.