File tree 4 files changed +19
-3
lines changed
4 files changed +19
-3
lines changed Original file line number Diff line number Diff line change
1
+ id: dae748f8-8b26-4d87-8cd5-e9d7999fd24c
2
+ name: markybot
3
+ created_at: 2023-09-01T13:29:58.247453716+08:00
4
+ group_name: null
5
+ lockfiles:
6
+ - path: ./pnpm-lock.yaml
7
+ type: pnpm
Original file line number Diff line number Diff line change @@ -75,14 +75,14 @@ export default function Chat() {
75
75
</ CardHeader >
76
76
</ Card >
77
77
) : (
78
- < ScrollArea className = "mx-auto w-full max-w-md py-5 flex flex-col h-[30rem] bg-gradient-to-br from-pink-700 to-violet-700 rounded" >
78
+ < ScrollArea className = "mx-auto w-full max-w-md py-5 px-2 md:px-5 flex flex-col h-[30rem] bg-gradient-to-br from-pink-700 to-violet-700 rounded" >
79
79
{ messages . map ( ( m ) => {
80
80
const colorClassName =
81
81
m . role === "user" ? "bg-sky-600" : "bg-slate-50 text-black" ;
82
82
return (
83
83
< div
84
84
key = { m . id }
85
- className = { `${ colorClassName } rounded-md mb-5 p-2 w-[25rem] mx-auto` }
85
+ className = { `${ colorClassName } rounded-md mb-5 p-2 mx-auto` }
86
86
>
87
87
{ m . role === "user" ? "🧑 " : "🤖 " }
88
88
< MemoizedReactMarkdown
Original file line number Diff line number Diff line change 9
9
"noEmit" : true ,
10
10
"esModuleInterop" : true ,
11
11
"module" : " esnext" ,
12
- "moduleResolution" : " bundler " ,
12
+ "moduleResolution" : " node " ,
13
13
"resolveJsonModule" : true ,
14
14
"isolatedModules" : true ,
15
15
"jsx" : " preserve" ,
Original file line number Diff line number Diff line change
1
+ {
2
+ "$schema" : " https://turbo.build/schema.json" ,
3
+ "pipeline" : {
4
+ "build" : {
5
+ "outputs" : [" .next/**" , " !.next/cache/**" ]
6
+ },
7
+ "lint" : {}
8
+ }
9
+ }
You can’t perform that action at this time.
0 commit comments