Pro Forms > Select Field > Modern Select Mode > Icon Styling / Field Issue

I’m not sure if this is just me, but when using a Select Field with Modern Select turned on, if you also have an Icon on the field, it centers the field and does not respect the 100% full width.

Removing the Icon fixes this issue.

Seems like we’re missing a simple “flex:1” here. Until natively included, you can add the following to your selects custom css to make it grow to whatever width is available:

%root% .choices {
  flex: 1;
}
1 Like