This commit is contained in:
yenminh269 2025-10-19 09:07:34 -05:00
commit 586e77de2f
2 changed files with 4 additions and 2 deletions

View file

@ -14,7 +14,7 @@ export default function DownButton({ onClick }) {
return (
<motion.button
onClick={handleClick}
className="bg-gray-700 p-2 rounded-2xl file-input border-2 border-gray-600 size-10"
className="bg-gray-700 p-2 rounded-2xl file-input border-2 border-gray-600"
whileHover={{ scale: 1.1 }}
whileTap={{ scale: 0.9 }}
>

View file

@ -23,7 +23,9 @@ export default function MessageInput({ onSend }) {
<div className="w-full flex justify-center">
<footer className="fixed bottom-6 max-w-3xl w-full px-4">
<div className="flex flex-col gap-4">
<DownButton></DownButton>
<div>
<DownButton></DownButton>
</div>
<form
onSubmit={handleSubmit}
className="bg-gray-900 rounded-2xl border-2 border-gray-800 shadow-lg shadow-indigo-600"