style(pages): extend proto2 styling to core flows

This commit is contained in:
zetaloop
2026-02-25 04:45:57 +08:00
parent e7eb86bf7e
commit 7bf1338b39
5 changed files with 10 additions and 9 deletions
+1 -1
View File
@@ -114,7 +114,7 @@ export default function OrderDetailPage({ params }: { params: Promise<{ id: stri
<div
className={`h-8 w-8 rounded-full flex items-center justify-center text-xs font-medium ${
isCurrent
? "bg-primary text-primary-foreground"
? "bg-primary text-primary-foreground shadow-sm"
: isActive
? "bg-primary/20 text-primary"
: "bg-muted text-muted-foreground"
+1
View File
@@ -137,6 +137,7 @@ export default function NewOrderPage() {
<Label htmlFor="note"></Label>
<Textarea
id="note"
className="rounded-lg"
placeholder="例如:希望晚上8点后开始"
value={note}
onChange={(e) => setNote(e.target.value)}