File tree Expand file tree Collapse file tree 2 files changed +6
-9
lines changed Expand file tree Collapse file tree 2 files changed +6
-9
lines changed Original file line number Diff line number Diff line change @@ -6,12 +6,7 @@ import { BootstrapForm } from "~/components/auth-and-model-providers/BootstrapFo
6
6
import { ProviderIcon } from "~/components/auth-and-model-providers/ProviderIcon" ;
7
7
import { ObotLogo } from "~/components/branding/ObotLogo" ;
8
8
import { Button } from "~/components/ui/button" ;
9
- import {
10
- Card ,
11
- CardDescription ,
12
- CardHeader ,
13
- CardTitle ,
14
- } from "~/components/ui/card" ;
9
+ import { Card , CardDescription , CardHeader } from "~/components/ui/card" ;
15
10
import { useAuthProviders } from "~/hooks/auth-providers/useAuthProviders" ;
16
11
import { useAuthStatus } from "~/hooks/auth/useAuthStatus" ;
17
12
@@ -43,9 +38,9 @@ export function SignIn({ className }: SignInProps) {
43
38
) }
44
39
>
45
40
< CardHeader >
46
- < CardTitle className = "flex items-center justify-center" >
41
+ < div className = "flex items-center justify-center" >
47
42
< ObotLogo />
48
- </ CardTitle >
43
+ </ div >
49
44
{ configuredAuthProviders . length > 0 && (
50
45
< CardDescription className = "mx-auto w-3/4 pt-4 text-center" >
51
46
Please sign in using an option below.
Original file line number Diff line number Diff line change @@ -56,7 +56,9 @@ export default function ChatAgent() {
56
56
57
57
return (
58
58
< ScrollArea className = "h-full" enableScrollStick = "bottom" >
59
- < div className = { cn ( "relative mx-auto flex h-full max-w-3xl flex-col" ) } >
59
+ < div
60
+ className = { cn ( "relative mx-auto flex h-full max-w-screen-md flex-col" ) }
61
+ >
60
62
< AgentProvider agent = { agent } >
61
63
< Agent key = { agent . id } />
62
64
</ AgentProvider >
You can’t perform that action at this time.
0 commit comments