File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
frontend/src/pages/Chat/components Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -11,12 +11,12 @@ const prompts = [
11
11
12
12
export default function SuggestedPrompts ( { onPromptClick } : SuggestedPromptsProps ) {
13
13
return (
14
- < div className = "xl:w-1/3 items-center m-auto " >
14
+ < div className = " items-center m-auto " >
15
15
< div className = " flex flex-col gap-4 fade-in-up items-center " >
16
16
{ prompts . map ( ( prompt , idx ) => (
17
17
< button
18
18
key = { idx }
19
- className = "inline-flex px-3 border border-[#1f584f] rounded-4xl cursor-pointer py-1 font-medium sm:bg-white hover:bg-[#bac9b2] "
19
+ className = "inline-flex px-4 border border-[#1f584f] rounded-4xl cursor-pointer py-1 font-medium sm:bg-white hover:bg-[#bac9b2] "
20
20
onClick = { ( ) =>
21
21
onPromptClick (
22
22
Array . isArray ( prompt ) ? prompt . join ( " " ) : prompt
You can’t perform that action at this time.
0 commit comments