Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,6 @@
margin: 0;
padding: 0;
height: 100vh;
overflow: hidden;
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Removing overflow: hidden from body resolves the flexbox scrolling issue, but it also re-enables page-level scrolling. This can introduce regressions such as horizontal scrollbars (if any content overflows horizontally) and background scrolling behind modals/drawers. Consider explicitly preventing horizontal scroll at the body level while allowing vertical scroll to keep the fix scoped and avoid unintended side effects.

Suggestion

You can keep the vertical scrolling fix while preventing accidental horizontal scrollbars by setting:

body {
  /* keep existing properties */
  overflow-x: hidden;
  overflow-y: auto;
}

Reply with "@CharlieHelps yes please" if you'd like me to add a commit with this change.

}
}

Expand Down Expand Up @@ -158,6 +157,7 @@
background-color: hsl(var(--card));
color: hsl(var(--card-foreground));
box-sizing: border-box;
min-height: 0;
}

.mobile-chat-input-area {
Expand Down