Improve loading state

This commit is contained in:
Tom Moor
2018-11-18 21:27:50 -08:00
parent 8208a6128a
commit 45445606b4
2 changed files with 15 additions and 4 deletions

View File

@@ -31,6 +31,8 @@ const RealInput = styled.input`
const Wrapper = styled.div`
max-width: ${props => (props.short ? '350px' : '100%')};
min-height: ${({ minHeight }) => (minHeight ? `${minHeight}px` : '0')};
max-height: ${({ maxHeight }) => (maxHeight ? `${maxHeight}px` : 'auto')};
`;
export const Outline = styled(Flex)`