The edit below will allow you to change the view of your Lists. This most notably applies to Forms.
BEFORE
AFTER
1)Log into your App Manager and select your app.
2) Click Colors from the left-hand-side of the screen (or the middle of the screen).
3) Scroll down to the Advanced SCSS box.
Change the list view of Forms:
/** Begin change list view of forms*/
.item.item-input.item-custom {
margin: 10px;
}
/** End change list view of forms*/
Change the list view in Folders/Directories:
/** Begin change list view of folders*/
.list .item.item-custom {
margin: 10px;
}
/** End change list view of folders*/
NOTE: Adjust the “margin” number to change the space between the items. Also, this change would affect all lists in your app.
IMPORTANT: If there is already code in the advanced SCSS box, do not remove it. Start a new line “after” the last character in the box, then paste the above code.