Skip to content

Commit 100ad61

Browse files
committed
chore: add width for multicol in mobile mode
1 parent 69a446f commit 100ad61

File tree

1 file changed

+1
-1
lines changed
  • packages/frontend/src/components/MultiCol.tsx

1 file changed

+1
-1
lines changed

packages/frontend/src/components/MultiCol.tsx/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export default function MultiCol(props: MultiColProps) {
3434
return (
3535
<div
3636
key={`${name}.${subF.key}`}
37-
style={isMobile ? { flex: 1 } : subF.customStyle}
37+
style={isMobile ? { flex: 1, width: '100%' } : subF.customStyle}
3838
>
3939
<InputCreator
4040
schema={subF}

0 commit comments

Comments
 (0)