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 (