fix(ui): gallery content overflow

This is one of those unexpected CSS quirks. Flex containers need min-width or min-height for their children to not overflow. Add `minH={0}` to gallery container.
This commit is contained in:
psychedelicious 2024-06-21 17:38:21 +10:00
parent e0a241fa4f
commit 9c931d9ca0

View File

@ -44,7 +44,7 @@ const ImageGalleryContent = () => {
<BoardsList isOpen={isBoardListOpen} />
</Box>
</Box>
<Flex ref={galleryGridRef} direction="column" gap={2} h="full" w="full">
<Flex ref={galleryGridRef} direction="column" gap={2} h="full" w="full" minH={0}>
<Flex alignItems="center" justifyContent="space-between" gap={2}>
<Tabs index={galleryView === 'images' ? 0 : 1} variant="unstyled" size="sm" w="full">
<TabList>