Skip to content

Commit 730d584

Browse files
committed
fix: layout issues
1 parent 842a3ca commit 730d584

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

apps/web/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
}
2222
</script>
2323
</head>
24-
<body class="overflow-hidden bg-slate-100 text-slate-900 dark:bg-slate-900 dark:text-slate-100">
24+
<body class="bg-slate-100 text-slate-900 dark:bg-slate-900 dark:text-slate-100">
2525
<div class="flex min-h-screen flex-col" id="root"></div>
2626
<script type="module" src="/src/main.tsx"></script>
2727
</body>

apps/web/src/features/setup/pages/SetupPage/SetupPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export type SetupPageProps = {
2323
export const SetupPage = ({ onSubmit }: SetupPageProps) => {
2424
const { t } = useTranslation();
2525
return (
26-
<div className="flex h-screen flex-col items-center justify-center overflow-y-scroll">
26+
<div className="flex flex-col items-center justify-center">
2727
<Card className="w-full grow px-4 sm:m-8 sm:max-w-xl sm:grow-0 md:max-w-2xl">
2828
<Card.Header className="flex items-center justify-center">
2929
<Logo className="m-2 h-auto w-16" variant="auto" />

0 commit comments

Comments
 (0)