fix(ui): prevent BibleReader container from scrolling YPE-1351#164
fix(ui): prevent BibleReader container from scrolling YPE-1351#164
Conversation
|
|
Codex usage limits have been reached for code reviews. Please check with the admins of this repo to increase the limits by adding credits. |
Greptile SummaryFixed double scrollbar issue in BibleReader by applying proper flexbox constraints. The root container now uses
The Confidence Score: 5/5
Important Files Changed
Flowchart%%{init: {'theme': 'neutral'}}%%
flowchart TD
A[Container: fixed inset-0] --> B[Root: flex flex-col h-full overflow-hidden]
B --> C[Content: flex-1 min-h-0 overflow-y-auto]
B --> D[Toolbar: fixed height]
C --> E[Bible Text View scrolls]
D --> F[Bottom bar stays fixed]
style A fill:#e1f5ff
style B fill:#fff4e6
style C fill:#e7f5e7
style D fill:#fff4e6
style E fill:#f0f0f0
style F fill:#f0f0f0
Last reviewed commit: f1b0364 |
For testing: Open the BibleReader and confirm there is only 1 scrollbar and the bottom reader bar doesn't move when using the scroll wheel with the cursor over it.