fix: add scroll to Quick Notes panel to prevent UI overflow#1572
Open
Tamcodes4 wants to merge 1 commit into
Open
fix: add scroll to Quick Notes panel to prevent UI overflow#1572Tamcodes4 wants to merge 1 commit into
Tamcodes4 wants to merge 1 commit into
Conversation
Author
|
Hey @aryandas2911, kindly review this pr and let me know if it has any issues or any changes I can do! |
Author
|
Hey @aryandas2911, could you review this pr? |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
📌 Description
Added a maximum height and internal scroll to the Quick Notes panel on the Tasks page to prevent it from overflowing and overlapping the main UI when multiple notes are added.
🔗 Related Issue
Closes #1389
🛠 Changes Made
max-h-[70vh] overflow-y-autoto the desktop Quick Notes popover div inTasks.jsxmax-h-[50vh] overflow-y-autoto the mobile Quick Notes div inTasks.jsx.notes-scrollcustom scrollbar styles inindex.cssto match the app's theme📸 Screenshots (if applicable)
Before
After
✅ Checklist
🚀 Notes for Reviewers
The Quick Notes panel previously expanded indefinitely when notes were added, pushing page content down. The fix constrains the panel height and adds a themed scrollbar so notes scroll within the panel without affecting the layout.