Skip to content

Commit

Permalink
Make a conversation ui more consistant
Browse files Browse the repository at this point in the history
  • Loading branch information
urmauur committed Nov 1, 2023
1 parent 37c3636 commit b3560f4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion web/app/_components/InputToolbar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ const InputToolbar: React.FC = () => {

if (conversations.length > 0)
return (
<div className="sticky bottom-0 w-full bg-background/90 px-5 py-0">
<div className="sticky bottom-0 w-full bg-background/90 px-5 pb-0 pt-2">
{currentConvoState?.error && (
<div className="flex flex-row justify-center">
<span className="mx-5 my-2 text-sm text-red-500">
Expand Down
2 changes: 1 addition & 1 deletion web/app/_components/SimpleTextMessage/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ const SimpleTextMessage: React.FC<Props> = ({

return (
<div
className={`flex items-start gap-x-4 gap-y-2 border-b border-border/50 px-4 py-5 last:border-none`}
className={`flex items-start gap-x-4 gap-y-2 border-b border-border/50 px-4 py-5`}
>
<Image
className="rounded-full"
Expand Down

0 comments on commit b3560f4

Please sign in to comment.