Align padding of agent pills to home screen chat input on small screens

This commit is contained in:
Debanjum Singh Solanky 2024-08-04 21:57:54 +05:30
parent b744dffefd
commit 51e56e17ee

View file

@ -233,7 +233,7 @@ function ChatBodyData(props: ChatBodyDataProps) {
props.isMobileWidth &&
<>
<div className={`${styles.inputBox} pt-1 shadow-[0_-20px_25px_-5px_rgba(0,0,0,0.1)] dark:bg-neutral-700 bg-background align-middle items-center justify-center pb-3 mx-1 rounded-t-2xl rounded-b-none`}>
<div className="flex gap-2 items-center justify-left pt-1 pb-2 px-10">
<div className="flex gap-2 items-center justify-left pt-1 pb-2 px-12">
{agentIcons.map((icon, index) => (
<Card
key={`${index}-${agents[index].slug}`}