diff --git a/src/frontend/src/modals/IOModal/components/chatView/chatInput/components/textAreaWrapper/index.tsx b/src/frontend/src/modals/IOModal/components/chatView/chatInput/components/textAreaWrapper/index.tsx index 6892373ad..19dbd4550 100644 --- a/src/frontend/src/modals/IOModal/components/chatView/chatInput/components/textAreaWrapper/index.tsx +++ b/src/frontend/src/modals/IOModal/components/chatView/chatInput/components/textAreaWrapper/index.tsx @@ -42,10 +42,10 @@ const TextAreaWrapper = ({ const fileClass = files.length > 0 - ? "rounded-b-md border-t-0 border-border focus:border-t-0 focus:border-ring" + ? "rounded-b-lg rounded-t-none border-t-0 border-border focus:border-t-0 focus:border-ring" : "rounded-md border-t-2 border-border focus:border-ring"; - const additionalClassNames = "form-modal-lockchat pl-10"; + const additionalClassNames = "form-modal-lockchat pl-14"; return ( ); diff --git a/src/frontend/src/modals/IOModal/components/chatView/chatInput/helpers/get-class-file-preview.ts b/src/frontend/src/modals/IOModal/components/chatView/chatInput/helpers/get-class-file-preview.ts index e400424a5..3f3cf2762 100644 --- a/src/frontend/src/modals/IOModal/components/chatView/chatInput/helpers/get-class-file-preview.ts +++ b/src/frontend/src/modals/IOModal/components/chatView/chatInput/helpers/get-class-file-preview.ts @@ -1,5 +1,5 @@ export const getClassNamesFilePreview = (inputFocus) => { - return `flex w-full items-center gap-2 rounded-t-md bg-background px-10 py-5 ${ + return `flex w-full items-center gap-4 rounded-t-lg bg-background px-14 py-5 overflow-auto custom-scroll ${ inputFocus ? "border-2 border-b-0 border-ring" : "border border-b-0 border-border" diff --git a/src/frontend/src/modals/IOModal/components/chatView/chatInput/index.tsx b/src/frontend/src/modals/IOModal/components/chatView/chatInput/index.tsx index 42c439941..4dbaf6e93 100644 --- a/src/frontend/src/modals/IOModal/components/chatView/chatInput/index.tsx +++ b/src/frontend/src/modals/IOModal/components/chatView/chatInput/index.tsx @@ -92,7 +92,6 @@ export default function ChatInput({ files={files} isDragging={isDragging} /> -