From 6445da33db4514f6bec6eca1ddf4bd49d9364e45 Mon Sep 17 00:00:00 2001 From: Tom Moor Date: Sun, 10 Mar 2019 14:32:42 -0700 Subject: [PATCH] Update Flex.js --- shared/components/Flex.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/components/Flex.js b/shared/components/Flex.js index b664dd8b41..9c0d226245 100644 --- a/shared/components/Flex.js +++ b/shared/components/Flex.js @@ -37,7 +37,7 @@ const Container = styled.div` flex-direction: ${({ column }) => (column ? 'column' : 'row')}; align-items: ${({ align }) => align}; justify-content: ${({ justify }) => justify}; - flex-shrink: ${({ shrink }) => (shrink ? 1 : 0)}; + flex-shrink: ${({ shrink }) => (shrink ? 1 : 'initial')}; min-height: 0; min-width: 0; `;