diff --git a/apps/web/src/components/views/checkout-view/CheckoutViewOrderSummary.tsx b/apps/web/src/components/views/checkout-view/CheckoutViewOrderSummary.tsx index 8faaf2405..17a2b63d9 100644 --- a/apps/web/src/components/views/checkout-view/CheckoutViewOrderSummary.tsx +++ b/apps/web/src/components/views/checkout-view/CheckoutViewOrderSummary.tsx @@ -31,10 +31,10 @@ export function CheckoutViewOrderSummary({ className="flex justify-between items-start text-sm" >
-
+
{item.product.title}
-
+
{item.selectedLicense?.name ?? 'Standard'} License
@@ -46,18 +46,18 @@ export function CheckoutViewOrderSummary({ ))}
-
-
+
+
Subtotal ${cartTotal.toFixed(2)}
-
+
Taxes ${tax.toFixed(2)}
- Total - + Total + ${(cartTotal + tax).toFixed(2)}
diff --git a/apps/web/src/components/views/live-view/LiveViewChat.tsx b/apps/web/src/components/views/live-view/LiveViewChat.tsx index ab7e60114..b118b3381 100644 --- a/apps/web/src/components/views/live-view/LiveViewChat.tsx +++ b/apps/web/src/components/views/live-view/LiveViewChat.tsx @@ -39,7 +39,7 @@ export function LiveViewChat({ > {msg.user}: - {msg.text} + {msg.text}
))}
@@ -49,17 +49,17 @@ export function LiveViewChat({
-
+
onMsgInputChange(e.target.value)} onKeyDown={(e) => e.key === 'Enter' && onSend()} - className="w-full bg-kodo-ink border border-kodo-steel rounded px-4 py-2 text-sm text-white focus:border-kodo-steel outline-none" + className="w-full bg-background border border-border rounded-xl px-4 py-2 text-sm text-foreground focus:border-primary outline-none transition-colors duration-[var(--duration-normal)]" placeholder="Say something..." /> - +
-
+
{CATEGORIES.map((cat) => (