From 57ae9c33205fc1c741e7651d87527cab07f3c386 Mon Sep 17 00:00:00 2001 From: Jan Felix Wiebe Date: Thu, 10 Jul 2025 22:40:58 +0200 Subject: [PATCH] added correct html title; changed display of item count in the OrderCard --- frontend/index.html | 2 +- frontend/src/components/OrderCard.vue | 14 +------------- 2 files changed, 2 insertions(+), 14 deletions(-) diff --git a/frontend/index.html b/frontend/index.html index 9e5fc8f..5a01af9 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -4,7 +4,7 @@ - Vite App + Tschunk Order
diff --git a/frontend/src/components/OrderCard.vue b/frontend/src/components/OrderCard.vue index cb69d80..c67fd2c 100644 --- a/frontend/src/components/OrderCard.vue +++ b/frontend/src/components/OrderCard.vue @@ -18,8 +18,7 @@ >
- {{ drink.drink_type }} - x{{ drink.quantity }} + {{ drink.quantity }}x {{ drink.drink_type }}
{{ drink.mate_type }} @@ -156,17 +155,6 @@ const handleDeleteOrder = async () => { font-size: 1rem; } -.drink-quantity { - background: #3b82f6; - color: white; - padding: 2px 8px; - border-radius: 12px; - font-size: 0.75rem; - font-weight: 600; - min-width: 24px; - text-align: center; -} - .drink-details { display: flex; flex-direction: column;