From 206a41b1188d6176bb8f0526e7c70794e2a3aa8f Mon Sep 17 00:00:00 2001 From: gabalafou Date: Mon, 13 May 2024 04:47:50 -0400 Subject: [PATCH] Set explicit height on infinite scroll target (#391) --- src/styles/StyledScrollContainer.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/styles/StyledScrollContainer.tsx b/src/styles/StyledScrollContainer.tsx index 0573b722..bae71f06 100644 --- a/src/styles/StyledScrollContainer.tsx +++ b/src/styles/StyledScrollContainer.tsx @@ -4,6 +4,7 @@ import { styled } from "@mui/system"; export const StyledScrollContainer = styled(Box, { shouldForwardProp: prop => prop !== "styleType" })<{ styleType?: string }>(({ theme: { palette } }) => ({ + height: "100%", overflowY: "scroll", overflowX: "hidden", paddingRight: "0px",