diff --git a/app/konto/bestellungen/page.tsx b/app/konto/bestellungen/page.tsx index 1642c40..47a5bc8 100644 --- a/app/konto/bestellungen/page.tsx +++ b/app/konto/bestellungen/page.tsx @@ -44,16 +44,17 @@ export default async function KontoBestellungenPage() { - {/* Below 500px: 2 columns, plain DOM order — Bestellnummer/ - Datum, Status/Zahlungsstatus, Artikel/Gesamtbetrag - tile into exactly those 3 pairs on their own, no - reordering needed. From 500px up: 4 columns, with + {/* Below sm (640px): 2 columns, plain DOM order — + Bestellnummer/Datum, Status/Zahlungsstatus, + Artikel/Gesamtbetrag tile into exactly those 3 pairs + on their own, no reordering needed. From sm up: 4 + columns, with Bestellnummer/Datum on their own row and Artikel/Status/Zahlungsstatus/Gesamtbetrag together on the row below, in that order — done via - min-[500px]:order-* rather than changing the actual + sm:order-* rather than changing the actual DOM order, so the mobile pairing above stays untouched. Artikel carries both order-3 (first in the second row) and col-start-1 (so it actually @@ -68,27 +69,27 @@ export default async function KontoBestellungenPage() { a different x position from one order card to the next depending on how wide that particular badge's label happened to be. */} -
+

Bestellnummer

{order.orderNumber}

-
+

Datum

{formatDate(order.createdAt)}

-
+

Status

-
+

Zahlungsstatus

-
+

Artikel

{order.itemCount}

-
+

Gesamtbetrag

{formatPrice(order.total)}