File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
client/packages/lowcoder/src/comps/comps/responsiveLayout Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -48,9 +48,10 @@ const ColWrapper = styled(Col)<{
4848 $minWidth ?: string ,
4949 $matchColumnsHeight : boolean ,
5050} > `
51- min-width: ${ ( props ) => props . $minWidth } ;
5251 display: flex;
5352 flex-direction: column;
53+ flex-basis: ${ ( props ) => props . $minWidth } ;
54+ max-width: ${ ( props ) => props . $minWidth } ;
5455
5556 > div {
5657 height: ${ ( props ) => props . $matchColumnsHeight ? '100%' : 'auto' } ;
@@ -65,7 +66,7 @@ const childrenMap = {
6566 } ) ,
6667 autoHeight : AutoHeightControl ,
6768 rowBreak : withDefault ( BoolControl , false ) ,
68- matchColumnsHeight : withDefault ( BoolControl , false ) ,
69+ matchColumnsHeight : withDefault ( BoolControl , true ) ,
6970 rowStyle : withDefault ( styleControl ( ResponsiveLayoutRowStyle ) , { } ) ,
7071 columnStyle : withDefault ( styleControl ( ResponsiveLayoutColStyle ) , { } ) ,
7172 columnPerRowLG : withDefault ( NumberControl , 4 ) ,
You can’t perform that action at this time.
0 commit comments