-
-
Notifications
You must be signed in to change notification settings - Fork 202
Explicit Grid Container Overflow Handling #9000
Copy link
Copy link
Closed
Labels
Description
The .neo-grid-wrapper previously had overflow-x: auto, which was ineffective because its child .neo-grid-container is absolutely positioned. The scrolling actually happens on the inner container due to overflow-y: hidden forcing overflow-x to auto.
To make this behavior explicit and less fragile:
- Remove
overflow-x: autofrom.neo-grid-wrapper. - Add
overflow-x: autoto.neo-grid-container.
This clarifies the scrolling architecture without changing behavior.
Reactions are currently unavailable