disabled overflow on base layout

This commit is contained in:
Lucas Oliveira 2025-09-18 17:46:23 -03:00
parent eea41c04d9
commit 4cbdf6ed19
2 changed files with 3 additions and 3 deletions

View file

@ -38,7 +38,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<body
className={`${inter.variable} ${jetbrainsMono.variable} ${chivo.variable} antialiased`}
className={`${inter.variable} ${jetbrainsMono.variable} ${chivo.variable} antialiased h-full w-full overflow-hidden`}
>
<ThemeProvider
attribute="class"

View file

@ -52,14 +52,14 @@ function OnboardingPage() {
const handleComplete = () => {
updateFlowSettingMutation.mutate({
llm_model: settings.agent?.llm_model,
embedding_model: settings.ingest?.embedding_model,
embedding_model: settings.knowledge?.embedding_model,
system_prompt: settings.agent?.system_prompt,
});
};
return (
<div
className="min-h-dvh relative flex gap-5 flex-col items-center justify-center bg-background p-4"
className="min-h-dvh w-full flex gap-5 flex-col items-center justify-center bg-background p-4"
style={{
backgroundImage: "url('/images/background.png')",
backgroundSize: "cover",