diff --git a/app/components/Input.tsx b/app/components/Input.tsx index 25baf5f78..f8f34139c 100644 --- a/app/components/Input.tsx +++ b/app/components/Input.tsx @@ -64,7 +64,7 @@ const Wrapper = styled.div<{ flex: ${(props) => (props.flex ? "1" : "0")}; width: ${(props) => (props.short ? "49%" : "auto")}; max-width: ${(props) => (props.short ? "350px" : "100%")}; - min-width: ${({ minWidth }) => (minWidth ? `${minWidth}px` : "0")}; + min-width: ${({ minWidth }) => (minWidth ? `${minWidth}px` : "initial")}; min-height: ${({ minHeight }) => (minHeight ? `${minHeight}px` : "0")}; max-height: ${({ maxHeight }) => (maxHeight ? `${maxHeight}px` : "initial")}; `;