From 8ef1f733780c547fddb65e5c308645cf4bd30728 Mon Sep 17 00:00:00 2001 From: aserrador Date: Sat, 24 Jan 2026 20:35:16 -0500 Subject: [PATCH] feat: Styling heard, totals --- .../catalog/components/order/Order.module.css | 47 +++++++++++++++++++ src/pages/catalog/components/order/Order.tsx | 45 ++++++++++++++---- 2 files changed, 83 insertions(+), 9 deletions(-) diff --git a/src/pages/catalog/components/order/Order.module.css b/src/pages/catalog/components/order/Order.module.css index d147266..a4ed178 100644 --- a/src/pages/catalog/components/order/Order.module.css +++ b/src/pages/catalog/components/order/Order.module.css @@ -1,4 +1,37 @@ +.header_container { + background: #f5f5f5; + margin: 1.5rem auto; + padding: 0.5rem 0.5rem 0.5rem 0.5rem; + border-radius: 12px; + text-align: right; +} + +.subheader_container { + display: flex; + flex-direction: column; + background: white; + margin: 0.5rem auto; + padding: 0.5rem 0.5rem 0.5rem 0.5rem; + border-radius: 12px; + text-align: left; +} + +.info_row { + display: flex; + justify-content: space-between; + margin-bottom: 8px; +} + +.label { + font-weight: 800; + color: #555; +} + +.value { + color: #111; +} + .orderline_container { background: #f5f5f5; margin: 1.5rem auto; @@ -14,6 +47,14 @@ text-align: center; } +.totals_container { + background: white; + margin: 0.5rem auto; + padding: 0.5rem 0.5rem 0.5rem 0.5rem; + border-radius: 12px; + text-align: right; +} + .comment_wrapper { position: relative; margin: 1.5rem auto; @@ -78,3 +119,9 @@ color: #f44336; font-weight: 600; } + +.order_buttons { + display: flex; + flex-direction: column; + gap: 1.0rem; +} diff --git a/src/pages/catalog/components/order/Order.tsx b/src/pages/catalog/components/order/Order.tsx index 82c2752..83a2b94 100644 --- a/src/pages/catalog/components/order/Order.tsx +++ b/src/pages/catalog/components/order/Order.tsx @@ -13,10 +13,23 @@ const Order = ({productLines = []} : OrderProps) => { return (

Compra #5428

-
- Jacinta Perez Gomez
- Avenida Siempre Viva 123
- +57 41233454 +
+
+
+ Consumidor: + Jacinta Perez Gomez +
+ +
+ Dirección: + Avenida Siempre Viva 123 +
+ +
+ Contacto: + +5741233454 +
+
@@ -34,10 +47,24 @@ const Order = ({productLines = []} : OrderProps) => { }
-
- SubTotal: $200.000 COP
- Domicilio: $10.000 COP
- Total: $210.000 COP +
+
+ +
+ Subtotal: + $200.000 COP +
+ +
+ Domicilio: + $10.000 COP +
+ +
+ Total: + $210.000 COP +
+
@@ -57,7 +84,7 @@ const Order = ({productLines = []} : OrderProps) => {
-
+