Flow UI FormLayout with two columns of different sizes

Is there a possibility to use FormLayout with two columns, but one column is 60% and the second is 40%?

Thanks

Hello @samybill ,

To split into columns, you can add responsiveSteps, but there is no way to set the width for each column.

Example:

<responsiveSteps>
    <responsiveStep minWidth="0" columns="1"/>
    <responsiveStep minWidth="40em" columns="3"/>
    <responsiveStep minWidth="80em" columns="5"/>
</responsiveSteps>

Regards,
Nikita

One possibility to have different columns widths is to create high number of columns and adjust the colspan. But one cannot define precisely the column width, it is always proportional to the available space