fix(sidebar): hide border on small screens

This commit is contained in:
2026-08-05 19:33:34 +02:00
parent baa924a2b2
commit e5f27041d2
@@ -61,6 +61,10 @@ const toggleSidebar = function toggleSidebar () {
} }
@media (max-width: 48rem) { @media (max-width: 48rem) {
.sidebar {
border: none;
}
.sidebar:not(.expanded) .sidebar-expand-button { .sidebar:not(.expanded) .sidebar-expand-button {
display: none; display: none;
} }