Message: Fix max width when folders sidebar visible (#6640)

This commit is contained in:
Alexander Zinchuk 2026-02-22 23:42:39 +01:00
parent b68ae94f3a
commit 7c00f507ae

View File

@ -31,6 +31,12 @@
align-items: flex-end;
margin-bottom: 0.375rem;
#Main.folders-sidebar-visible & {
@media (max-width: 1440px) {
--max-width: 24rem;
}
}
.theme-dark & {
--color-reaction: rgb(255, 255, 255, 0.1);
--hover-color-reaction: rgb(255, 255, 255, 0.2);
@ -248,6 +254,12 @@
}
}
#Main.folders-sidebar-visible & {
@media (min-width: 1440px) {
--max-width: 25rem;
}
}
@media (min-width: 1921px) {
--max-width: 30vw;
}