Skip to content

Commit

Permalink
fix: 캐릭터 생성 레이아웃 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
황 태환 committed Feb 29, 2024
1 parent 98d1c65 commit e0a8502
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/create-character/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export default function CreateCharacter() {
}}
>
<StepperHeader />
<CarouselContent style={{ minHeight: '100dvh' }} className="m-0 p-0">
<CarouselContent style={{ height: '100dvh', minHeight: '660px' }} className="m-0 p-0">
{STEPS.map((step, idx) => (
<StepContainer key={idx}>{step}</StepContainer>
))}
Expand Down
2 changes: 1 addition & 1 deletion src/components/create-character/stepper-header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default function StepperHeader() {
return (
<>
{step !== null && step >= 1 && step <= 5 && (
<div className="fixed z-[999] mx-auto flex w-screen min-w-[350px] flex-col items-center bg-white lg:w-[400px]">
<div className="absolute z-[999] mx-auto flex w-screen min-w-[350px] flex-col items-center bg-white lg:w-[400px]">
<TopBar>
<TopBar.Left>
<button className="flex h-full w-[16px] items-center " onClick={handlePrevClick}>
Expand Down

0 comments on commit e0a8502

Please sign in to comment.