fix(notes): prevent sticky folder z-index from overlapping webview (#12289)

Add `isolation: isolate` to NotesSidebar container to create a new
stacking context, preventing sticky folder elements (z-index: 1000+)
from overlapping MinApp webview when switching pages.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-authored-by: Claude <noreply@anthropic.com>
This commit is contained in:
SuYao 2026-01-05 18:16:08 +08:00 committed by GitHub
parent ad164f2c1b
commit c4f372feba
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -452,6 +452,7 @@ export const SidebarContainer = styled.div`
display: flex;
flex-direction: column;
position: relative;
isolation: isolate;
`
export const NotesTreeContainer = styled.div`