Make Collections list visible in main area on mobile Contents tab

Issue: Tapping 'Contents' tab did nothing on mobile (sidebar hidden)
Fix: When Contents tab is active, show Collections list in main content area

Collections list now appears as full-width content when needed.
Media tab continues to work normally.
This commit is contained in:
Claude
2026-04-07 22:25:06 +00:00
parent e81922ef91
commit f4ae815cdf

View File

@@ -29,6 +29,19 @@
display: none !important;
}
/* BUT show sidebar content in main area when Contents tab is active */
[class*="App-content"].active aside,
[class*="App-content"].active [class*="Sidebar"],
.contents-active aside,
.contents-active [class*="Sidebar"] {
display: block !important;
position: static !important;
width: 100% !important;
max-width: 100% !important;
height: auto !important;
border: none !important;
}
/* Main content takes full width */
main,
[class*="MainContent"],