fix: allow sidebar list to scroll independently
ci / docker (push) Successful in 3m29s

This commit is contained in:
2026-09-07 09:23:04 +08:00
parent ec90e9155e
commit 437d54eeb9
2 changed files with 8 additions and 1 deletions
+7
View File
@@ -28,3 +28,10 @@ describe('mobile touch targets', () => {
expect(css).toContain('.countdown-modal header button{min-width:44px;min-height:44px;')
})
})
describe('sidebar layout', () => {
it('lets the list area flex and scroll inside the fixed sidebar', () => {
expect(css).toContain('.folders{flex:1;min-height:0;')
expect(css).toContain('overflow-y:auto')
})
})