fix max height on notifications

This commit is contained in:
hzrd149 2024-09-04 09:50:07 -05:00
parent 331ec5d5d0
commit 6eb97c490f

View File

@ -68,17 +68,7 @@ const NotificationIconEntry = memo(
</Flex>
{expanded && (
<Flex
direction="column"
w="full"
gap="2"
overflow="hidden"
minH={{ base: "calc(100vh - 10rem)", lg: "xs" }}
p="2"
maxH="calc(100vh - 10rem)"
overflowY="auto"
overflowX="hidden"
>
<Flex direction="column" w="full" gap="2" overflow="hidden" p="2">
{children}
</Flex>
)}