Want clean 1-3 columns for different devices?
Display one on smaller devices:
Two on medium:
And three on large:
Add this code to extra.less
.listInline--customField
{
@media only screen and (max-width: 600px) {
columns: 1;
-webkit-columns: 1;
-moz-columns: 1;
}
@media only screen and...