Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export default function Layout({ children }: PropsWithChildren) {
</div>
</div>

<div className="w-full py-16">{children}</div>
<div className="w-full pt-16 pb-0 lg:pb-16">{children}</div>

{/* Empty div to center main content */}
<div className="grow basis-0" />
Expand Down
2 changes: 1 addition & 1 deletion apps/web/app/app.dub.co/(onboarding)/signed-in-hint.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export function SignedInHint() {
const [isLoading, setIsLoading] = useState(false);

return (
<div className="fixed bottom-0 left-0 z-40 m-5 flex flex-col gap-2">
<div className="static mt-1 m-5 flex flex-col gap-2 items-center lg:mt-0 lg:fixed lg:bottom-0 lg:left-0 lg:z-40 lg:items-start">
<div className="flex items-center gap-1 text-xs text-neutral-600">
You're signed in as{" "}
{session ? (
Expand Down