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