fix: force bookmarks pane expanded on mobile and ensure highlights pane sits above content on desktop

This commit is contained in:
Gigi
2025-10-10 17:54:32 +01:00
parent 6a9036bfef
commit d281ca5f87
2 changed files with 6 additions and 1 deletions

View File

@@ -243,7 +243,7 @@ const ThreePaneLayout: React.FC<ThreePaneLayoutProps> = (props) => {
<BookmarkList
bookmarks={props.bookmarks}
onSelectUrl={props.onSelectUrl}
isCollapsed={props.isCollapsed}
isCollapsed={isMobile ? false : props.isCollapsed}
onToggleCollapse={props.onToggleSidebar}
onLogout={props.onLogout}
viewMode={props.viewMode}