feat:UX and fix drinkkaart payment logic
This commit is contained in:
@@ -22,8 +22,8 @@ export const Route = createFileRoute("/manage/$token")({
|
||||
|
||||
function PageShell({ children }: { children: React.ReactNode }) {
|
||||
return (
|
||||
<div className="min-h-screen bg-[#214e51]">
|
||||
<div className="mx-auto max-w-3xl px-6 py-16">{children}</div>
|
||||
<div>
|
||||
<div className="mx-auto max-w-5xl px-6 py-12">{children}</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
@@ -31,10 +31,10 @@ function PageShell({ children }: { children: React.ReactNode }) {
|
||||
function BackLink() {
|
||||
return (
|
||||
<Link
|
||||
to="/"
|
||||
to="/account"
|
||||
className="link-hover mb-8 inline-block text-white/80 hover:text-white"
|
||||
>
|
||||
← Terug naar home
|
||||
← Terug naar account
|
||||
</Link>
|
||||
);
|
||||
}
|
||||
@@ -427,7 +427,7 @@ function EditForm({ token, initialData, onCancel, onSaved }: EditFormProps) {
|
||||
onChange={(e) =>
|
||||
setFormData((p) => ({ ...p, extraQuestions: e.target.value }))
|
||||
}
|
||||
className="w-full resize-none bg-transparent py-2 text-lg text-white placeholder:text-white/40 focus:outline-none"
|
||||
className="w-full border border-white/10 resize-none bg-transparent p-2 text-lg text-white placeholder:text-white/40 focus:outline-none"
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user