From 6cd4e3069f00d0eea95faa3ead6ca242a35435ad Mon Sep 17 00:00:00 2001 From: Tom Moor Date: Sun, 15 Jul 2018 23:11:49 -0700 Subject: [PATCH] Fixes: Scrolling issues in FF #692 --- shared/components/Flex.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/shared/components/Flex.js b/shared/components/Flex.js index 7542c18c..02750622 100644 --- a/shared/components/Flex.js +++ b/shared/components/Flex.js @@ -36,6 +36,8 @@ const Container = styled.div` flex-direction: ${({ column }) => (column ? 'column' : 'row')}; align-items: ${({ align }) => align}; justify-content: ${({ justify }) => justify}; + min-height: 0; + min-width: 0; `; export default Flex;