Skip to content

Commit

Permalink
Fix overflow in messages component
Browse files Browse the repository at this point in the history
  • Loading branch information
edspencer committed Sep 4, 2024
1 parent 1f8758c commit bc1e6e9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/three-pots-sit.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"inform-ai": patch
---

Fix scrolling overflow on Messages UI component
2 changes: 1 addition & 1 deletion src/ui/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
/* Messages styles */
@layer components {
.iai-messages {
@apply flex flex-col gap-2;
@apply flex flex-col gap-2 overflow-y-auto;

.user-message {
@apply flex justify-end;
Expand Down

0 comments on commit bc1e6e9

Please sign in to comment.