We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 90bbcfd + a299c26 commit 061aaf8Copy full SHA for 061aaf8
src/components/Container/Container.tsx
@@ -133,7 +133,7 @@ const Wrapper = styled.div<{
133
flex-wrap: ${({ $wrap = "nowrap" }) => $wrap};
134
gap: ${({ theme, $gapSize }) => theme.click.container.gap[$gapSize]};
135
max-width: ${({ $maxWidth }) => $maxWidth ?? "none"};
136
- min-width: ${({ $minWidth }) => $minWidth ?? "none"};
+ min-width: ${({ $minWidth }) => $minWidth ?? "auto"};
137
padding: ${({ theme, $paddingSize }) => theme.click.container.space[$paddingSize]};
138
width: ${({ $fillWidth = true }) => ($fillWidth === true ? "100%" : "auto")};
139
flex-direction: ${({ $orientation = "horizontal" }) =>
0 commit comments