You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I did not test this in all browsers, however I'm using FIreFox 61.0.1, and I noticed that with the input having flex: 1, it will grow and shrink to fill the remaining space of the container EXCEPT once the container shrinks to a certain width, the input stops shrinking.
I added min-width: 0; to the .InputAddOn-field class, and it fixed the issue for me.
.InputAddOn-field {
flex: 1;
min-width: 0;
}
Thanks for all you do!
The text was updated successfully, but these errors were encountered:
I did not test this in all browsers, however I'm using FIreFox 61.0.1, and I noticed that with the input having flex: 1, it will grow and shrink to fill the remaining space of the container EXCEPT once the container shrinks to a certain width, the input stops shrinking.
I added min-width: 0; to the .InputAddOn-field class, and it fixed the issue for me.
Thanks for all you do!
The text was updated successfully, but these errors were encountered: