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 e8b585397..f8d16f24d 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 @@ -35,10 +35,7 @@ const TextAreaWrapper = ({ ? "form-modal-no-input bg-input" : "form-modal-lock-false bg-background"; - const fileClass = - files.length > 0 - ? "rounded-b-lg ring-0 focus:ring-0 focus:border-2 rounded-t-none border-t-0 border-border focus:border-t-0 focus:border-ring" - : "rounded-md border-t border-border focus:ring-0 focus:border-2 focus:border-ring"; + const fileClass = files.length > 0 ? "!rounded-t-none border-t-0" : ""; const additionalClassNames = "form-modal-lockchat pl-14"; @@ -53,7 +50,6 @@ const TextAreaWrapper = ({ data-testid="input-chat-playground" onFocus={(e) => { setInputFocus(true); - e.target.style.borderTopWidth = "0"; }} onBlur={() => setInputFocus(false)} onKeyDown={(event) => { 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 7e957f586..de5422252 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,7 +1,5 @@ export const getClassNamesFilePreview = (inputFocus) => { - return `flex w-full items-center gap-4 rounded-t-lg bg-background px-14 py-5 overflow-auto custom-scroll ${ - inputFocus - ? "border border-b-0 border-ring border-2" - : "border border-b-0 border-border" + return `flex w-full items-center gap-4 rounded-t-lg bg-background px-14 py-5 overflow-auto custom-scroll border ${ + inputFocus ? "border-ring" : "" }`; }; diff --git a/src/frontend/src/modals/codeAreaModal/index.tsx b/src/frontend/src/modals/codeAreaModal/index.tsx index d3aa86533..ce80932d5 100644 --- a/src/frontend/src/modals/codeAreaModal/index.tsx +++ b/src/frontend/src/modals/codeAreaModal/index.tsx @@ -221,7 +221,7 @@ export default function CodeAreaModal({ onChange={(value) => { setCode(value); }} - className="h-full w-full rounded-lg border-[1px] border-gray-300 custom-scroll dark:border-gray-600" + className="h-full min-w-full rounded-lg border-[1px] border-gray-300 custom-scroll dark:border-gray-600" />