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 (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<body
|
<body
|
||||||
className={`${inter.variable} ${jetbrainsMono.variable} ${chivo.variable} antialiased`}
|
className={`${inter.variable} ${jetbrainsMono.variable} ${chivo.variable} antialiased h-full w-full overflow-hidden`}
|
||||||
>
|
>
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
attribute="class"
|
attribute="class"
|
||||||
|
|
|
||||||
|
|
@ -52,14 +52,14 @@ function OnboardingPage() {
|
||||||
const handleComplete = () => {
|
const handleComplete = () => {
|
||||||
updateFlowSettingMutation.mutate({
|
updateFlowSettingMutation.mutate({
|
||||||
llm_model: settings.agent?.llm_model,
|
llm_model: settings.agent?.llm_model,
|
||||||
embedding_model: settings.ingest?.embedding_model,
|
embedding_model: settings.knowledge?.embedding_model,
|
||||||
system_prompt: settings.agent?.system_prompt,
|
system_prompt: settings.agent?.system_prompt,
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div
|
<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={{
|
style={{
|
||||||
backgroundImage: "url('/images/background.png')",
|
backgroundImage: "url('/images/background.png')",
|
||||||
backgroundSize: "cover",
|
backgroundSize: "cover",
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue