File tree Expand file tree Collapse file tree 1 file changed +2
-7
lines changed
apps/client/src/pages/onBoarding/components/funnel Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -37,19 +37,15 @@ const variants = {
3737} ;
3838
3939const 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 ) && (
You can’t perform that action at this time.
0 commit comments