Skip to content

Commit f6b2cb2

Browse files
committed
Tweak text input style
1 parent f1ccd3d commit f6b2cb2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/app/components/Layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import Sidebar from './Sidebar'
44
function Layout() {
55
return (
66
<div className="bg-[#6756BD] h-screen py-6 px-5">
7-
<main className="grid grid-cols-[20%_1fr] h-full bg-[#ffffff66] rounded-[50px] max-w-[1316px] mx-auto backdrop-blur-2xl pl-5 py-4 pr-4">
7+
<main className="grid grid-cols-[20%_1fr] h-full bg-[#ffffff66] rounded-[40px] max-w-[1316px] mx-auto backdrop-blur-2xl pl-5 py-4 pr-4">
88
<Sidebar />
99
<Outlet />
1010
</main>

src/app/pages/MultiBotChatPanel.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ const MultiBotChatPanel: FC = () => {
5050
/>
5151
<div className="col-span-full">
5252
<ChatMessageInput
53-
className="rounded-[40px] bg-white px-[25px] py-[12px]"
53+
className="rounded-full bg-white px-[20px] py-[10px]"
5454
disabled={generating}
5555
placeholder="Send to all ..."
5656
onSubmit={onUserSendMessage}

0 commit comments

Comments
 (0)