Skip to content

Commit f62bf22

Browse files
fixed min-width not working in responsive layout
1 parent 62e83b8 commit f62bf22

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

client/packages/lowcoder/src/comps/comps/responsiveLayout/responsiveLayout.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,7 @@ const RowWrapper = styled(Row)<{
6262
padding: ${(props) => props.$style.padding};
6363
rotate: ${(props) => props.$style.rotation};
6464
overflow: ${(props) => (props.$showScrollbar ? 'auto' : 'hidden')};
65-
display: flex;
66-
flex-wrap: wrap; // Ensure columns wrap properly when rowBreak = true
65+
6766
::-webkit-scrollbar {
6867
display: ${(props) => (props.$showScrollbar ? 'block' : 'none')};
6968
}

0 commit comments

Comments
 (0)