fix(sidebar): fix main content displaying

Do not show main content on small screens when the sidebar is expanded.
This commit is contained in:
2026-07-31 20:59:19 +02:00
committed by Gitea
parent 0a58944157
commit 48e979ac64
+4
View File
@@ -90,6 +90,10 @@ const toggleExpanded = function toggleExpanded () {
.layout-container:not(.expanded) .main-content {
padding-top: 0;
}
.layout-container.expanded .main-content {
display: none;
}
}
.main-content {