Skip to content

Commit

Permalink
fix: border 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
woneeeee committed Jan 19, 2025
1 parent 607a7b9 commit 2ddf637
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/chat/MessageInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const ChatInput = () => {
return (
<div className="fixed left-0 right-0 bottom-0 max-w-[430px] w-full mx-auto">
{showMenu && (
<div className="w-full bg-secondary">
<div className="w-full h-[144px] bg-secondary rounded-t-3xl">
<BottomMenu />
</div>
)}
Expand Down
2 changes: 1 addition & 1 deletion src/components/chat/bottomMenu/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { MENUITEMS } from '@/constants';

const BottomMenu = () => {
return (
<div className="flex justify-around bg-secondary py-4">
<div className="flex justify-evenly py-8">
{MENUITEMS.map((item, index) => (
<MenuItem key={index} Icon={item.icon} label={item.label} />
))}
Expand Down

0 comments on commit 2ddf637

Please sign in to comment.