diff --git a/BTCPayServer/Views/Apps/ViewPointOfSale.cshtml b/BTCPayServer/Views/Apps/ViewPointOfSale.cshtml index 075ca1bcd..18d8fe9d9 100644 --- a/BTCPayServer/Views/Apps/ViewPointOfSale.cshtml +++ b/BTCPayServer/Views/Apps/ViewPointOfSale.cshtml @@ -19,9 +19,11 @@

@Model.Title

- @foreach(var item in Model.Items) + @for(int i = 0; i < Model.Items.Length; i++) { -
+ var className = (Model.Items.Length - i) > (Model.Items.Length % 3) ? "col-sm-4 mb-3" : "col align-self-center"; + var item = Model.Items[i]; +

@item.Title