Horizontal RepeatingPanel (Again)

The crucial extra bits can be found in that app’s theme.css (in the Assets):

.anvil-role-horizontal-repeater {
    display: flex;
}
.anvil-role-horizontal-repeater>div {
    min-width: 200px;
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
}
.anvil-role-horizontal-repeater .anvil-panel-col {
    min-width: 200px;
}  
.anvil-role-twod-repeater .anvil-role-horizontal-repeater>div {
    overflow: hidden;
}
.anvil-role-twod-repeater>div {
    overflow-x: auto;
}
1 Like