Skip to content

Commit c353e95

Browse files
committed
edit styling
1 parent 0d2ea5e commit c353e95

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

frontend/src/pages/Chat/components/SuggestedPrompts.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ const prompts = [
1111

1212
export default function SuggestedPrompts({ onPromptClick }: SuggestedPromptsProps) {
1313
return (
14-
<div className="xl:w-1/3 items-center m-auto ">
14+
<div className=" items-center m-auto ">
1515
<div className=" flex flex-col gap-4 fade-in-up items-center ">
1616
{prompts.map((prompt, idx) => (
1717
<button
1818
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] "
2020
onClick={() =>
2121
onPromptClick(
2222
Array.isArray(prompt) ? prompt.join(" ") : prompt

0 commit comments

Comments
 (0)