fix: fixed height of swiper on mobiles
This commit is contained in:
@ -29,3 +29,7 @@
|
|||||||
margin-bottom: calc(var(--mantine-spacing-sm) * 2);
|
margin-bottom: calc(var(--mantine-spacing-sm) * 2);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.swiper-container :global(.swiper-pagination) {
|
||||||
|
bottom: 0;
|
||||||
|
}
|
||||||
|
|||||||
@ -133,7 +133,10 @@ const FunnelDnd = <
|
|||||||
}}
|
}}
|
||||||
className={classes["swiper-container"]}
|
className={classes["swiper-container"]}
|
||||||
spaceBetween={15}
|
spaceBetween={15}
|
||||||
style={{ paddingInline: "10vw" }}
|
style={{
|
||||||
|
paddingInline: "10vw",
|
||||||
|
height: "calc(100vh - 188px)",
|
||||||
|
}}
|
||||||
modules={[Pagination]}
|
modules={[Pagination]}
|
||||||
freeMode={{ enabled: false }}
|
freeMode={{ enabled: false }}
|
||||||
pagination={{ enabled: true, clickable: true }}>
|
pagination={{ enabled: true, clickable: true }}>
|
||||||
|
|||||||
Reference in New Issue
Block a user