fix stats table

This commit is contained in:
yohlo
2025-10-11 15:23:33 -05:00
parent d3379e54a4
commit 2ed5ab6026
2 changed files with 7 additions and 6 deletions

View File

@@ -207,11 +207,13 @@ function SwipeableTabs({
height: carouselHeight === "auto" ? "auto" : `${carouselHeight}px`,
transition: "height 300ms ease",
touchAction: "pan-y",
width: "100%",
maxWidth: "100vw",
}}
>
{tabs.map((tab, index) => (
<Carousel.Slide key={`${tab.label}-content-${index}`}>
<Box ref={setSlideRef(index)} style={{ height: "auto" }}>
<Box ref={setSlideRef(index)} style={{ height: "auto", width: "100%", maxWidth: "100vw", overflow: "hidden" }}>
{tab.content}
</Box>
</Carousel.Slide>