Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: Textarea scroll #517

Closed

Conversation

RuchitMicro
Copy link

Fix: Make Textarea Scrollable When Content Exceeds Height

Summary
This pull request addresses an issue where the textarea was not scrollable via the mouse when the content exceeded its current height. The issue was caused by the overflow-hidden class, which prevented scrolling. This fix replaces overflow-hidden with overflow-auto, allowing the textarea to be scrollable.

Description
Issue: When the content inside a textarea exceeded its defined height, users were unable to scroll through the content using the mouse.
Solution: Replaced overflow-hidden with overflow-auto on the textarea element. This change allows the content to be scrollable when it exceeds the textarea's height.
Changes
Modified CSS class for textarea from overflow-hidden to overflow-auto.

@lukasvinclav
Copy link
Contributor

Thanks. Fixed #518

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants