Multiple file field not wrapping

I have a VARCHAR field containing multiple files.
Since upgrading to v2020, this field now displays all the filenames on one line, and doesn’t wrap, even when i set the field width to 250.
End result is that my table is too wide and on the right hand side the last few fields are not visible.

You may press F12 in your browser, check the CSS of the file names, and add your own CSS for wrapping under HTML > Styles > User tab.

ThanksThe culprit is actually the flex-row class, which IMO is not a suitable default for most cases…flex-row {
flex-direction: row !important;
}I fixed it like this:
.flex-row {
flex-direction: column !important;
}I then gave the documents a bulleted list:
.p-1 {
/* padding: .25rem !important; /
padding: initial;
/ float: left !important; */
width: 250px;
display: list-item;
list-style: square inside;
}