Skip to content

Commit d2d8f41

Browse files
feat: mainCard 82.6rem으로 고정하는 디자인 요청 반영
1 parent 572f680 commit d2d8f41

File tree

1 file changed

+2
-7
lines changed
  • apps/client/src/pages/onBoarding/components/funnel

1 file changed

+2
-7
lines changed

apps/client/src/pages/onBoarding/components/funnel/MainCard.tsx

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -37,19 +37,15 @@ const variants = {
3737
};
3838

3939
const CardStyle = cva(
40-
'bg-white-bg flex h-[54.8rem] w-full flex-col items-center justify-between rounded-[2.4rem] pt-[3.2rem]',
40+
'bg-white-bg flex h-[54.8rem] w-full max-w-[82.6rem] flex-col items-center justify-between rounded-[2.4rem] pt-[3.2rem]',
4141
{
4242
variants: {
4343
overflow: {
4444
true: 'overflow-visible',
4545
false: 'overflow-hidden',
4646
},
47-
size: {
48-
default: 'max-w-[63.2rem]',
49-
wide: 'max-w-[82.6rem]',
50-
},
5147
},
52-
defaultVariants: { overflow: false, size: 'default' },
48+
defaultVariants: { overflow: false },
5349
}
5450
);
5551

@@ -214,7 +210,6 @@ const MainCard = () => {
214210
<div
215211
className={CardStyle({
216212
overflow: step === Step.ALARM && alarmSelected === 3,
217-
size: step === Step.JOB ? 'wide' : 'default',
218213
})}
219214
>
220215
{storySteps.includes(step) && (

0 commit comments

Comments
 (0)