Skip to content
Open
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
5 changes: 5 additions & 0 deletions app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,11 @@
body {
@apply bg-background text-foreground;
}

html, body {
overflow-x: hidden;
width: 100%;
}
Copy link

Choose a reason for hiding this comment

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

Bug: Global Overflow Styling Causes Accessibility Problems

Applying overflow-x: hidden globally to html and body hides all horizontally overflowing content. This makes content inaccessible and breaks legitimate horizontal scrolling for components like data tables or code blocks, creating significant accessibility issues.

Fix in Cursor Fix in Web

}

.skeleton {
Expand Down