Skip to content

Commit

Permalink
Remove hidden overflow property of tailwind + Update buttons position…
Browse files Browse the repository at this point in the history
… (under textarea)
  • Loading branch information
QuentinMacheda authored and louis-jan committed May 3, 2024
1 parent c6182ab commit d370bfa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/screens/Chat/EditChatInput/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -129,11 +129,11 @@ const EditChatInput: React.FC<Props> = ({ message }) => {
}

return (
<div className="mx-auto flex w-full flex-shrink-0 items-end justify-center space-x-4 pb-0 pt-1">
<div className="mx-auto flex w-full flex-col flex-shrink-0 items-start justify-center space-y-4 pb-0 pt-1">

Check failure on line 132 in web/screens/Chat/EditChatInput/index.tsx

View workflow job for this annotation

GitHub Actions / test-on-macos-pr-target

Replace `col·flex-shrink-0` with `shrink-0·flex-col`

Check failure on line 132 in web/screens/Chat/EditChatInput/index.tsx

View workflow job for this annotation

GitHub Actions / test-on-ubuntu-pr-target

Replace `col·flex-shrink-0` with `shrink-0·flex-col`

Check failure on line 132 in web/screens/Chat/EditChatInput/index.tsx

View workflow job for this annotation

GitHub Actions / test-on-windows-pr-target

Replace `col·flex-shrink-0` with `shrink-0·flex-col`
<div className="relative flex w-full flex-col">
<Textarea
className={twMerge(

Check failure on line 135 in web/screens/Chat/EditChatInput/index.tsx

View workflow job for this annotation

GitHub Actions / test-on-macos-pr-target

Replace `⏎············'max-h-[400px]·resize-none·pr-20'⏎··········` with `'max-h-[400px]·resize-none·pr-20'`

Check failure on line 135 in web/screens/Chat/EditChatInput/index.tsx

View workflow job for this annotation

GitHub Actions / test-on-ubuntu-pr-target

Replace `⏎············'max-h-[400px]·resize-none·pr-20'⏎··········` with `'max-h-[400px]·resize-none·pr-20'`

Check failure on line 135 in web/screens/Chat/EditChatInput/index.tsx

View workflow job for this annotation

GitHub Actions / test-on-windows-pr-target

Replace `␍⏎············'max-h-[400px]·resize-none·pr-20'␍⏎··········` with `'max-h-[400px]·resize-none·pr-20'`
'max-h-[400px] resize-none overflow-y-hidden pr-20'
'max-h-[400px] resize-none pr-20'
)}
style={{ height: '40px' }}
ref={textareaRef}
Expand Down

0 comments on commit d370bfa

Please sign in to comment.