disabled overflow on base layout
This commit is contained in:
parent
eea41c04d9
commit
4cbdf6ed19
2 changed files with 3 additions and 3 deletions
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue