We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d9debc7 commit f3e5e96Copy full SHA for f3e5e96
client/packages/lowcoder/src/comps/comps/responsiveLayout/responsiveLayout.tsx
@@ -48,9 +48,10 @@ const ColWrapper = styled(Col)<{
48
$minWidth?: string,
49
$matchColumnsHeight: boolean,
50
}>`
51
- min-width: ${(props) => props.$minWidth};
52
display: flex;
53
flex-direction: column;
+ flex-basis: ${(props) => props.$minWidth};
54
+ max-width: ${(props) => props.$minWidth};
55
56
> div {
57
height: ${(props) => props.$matchColumnsHeight ? '100%' : 'auto'};
0 commit comments