Skip to content

Commit 8bac0b6

Browse files
committed
Add a footer in the setup page, aligned button with card above
1 parent 875ac3c commit 8bac0b6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

frontend/app/[locale]/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -500,7 +500,7 @@ export default function Home() {
500500
onAdminRequired={handleAdminRequired}
501501
onViewChange={handleViewChange}
502502
currentView={currentView}
503-
showFooter={currentView !== "setup"}
503+
showFooter={true}
504504
contentMode={
505505
currentView === "home"
506506
? "centered"

frontend/app/[locale]/setup/SetupLayout.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ function Navigation({
131131
};
132132

133133
return (
134-
<div className="mt-3 flex justify-between px-6">
134+
<div className="mt-3 flex justify-between" style={{ padding: "0 16px" }}>
135135
<div className="flex gap-2">
136136
{showBack && onBack && (
137137
<button
@@ -196,8 +196,8 @@ export default function SetupLayout({
196196
return (
197197
<div className="w-full h-full bg-slate-50 dark:bg-slate-900 font-sans">
198198
{/* Main content with fixed size */}
199-
<div className="max-w-[1800px] mx-auto px-8 pb-4 pt-6 bg-transparent h-full flex flex-col">
200-
<div className="flex-1 overflow-auto">
199+
<div className="max-w-[1800px] mx-auto px-8 pb-6 pt-6 bg-transparent h-full flex flex-col">
200+
<div className="flex-1 overflow-auto w-full h-full flex items-center justify-center">
201201
{children}
202202
</div>
203203
<Navigation

0 commit comments

Comments
 (0)