css: Hide left column in both navbar and app.

This was a regression in #29331 with no visual effects.
This commit is contained in:
Aman Agrawal 2024-03-19 03:03:15 +00:00 committed by Tim Abbott
parent fed085e319
commit afe420dcd3
1 changed files with 16 additions and 15 deletions

View File

@ -2451,24 +2451,25 @@ select.invite-as {
@media (width < $md_min) { @media (width < $md_min) {
.default-sidebar-behaviour { .default-sidebar-behaviour {
.app-main .column-left { .app-main .column-left,
.header-main .column-left {
display: none; display: none;
}
&.expanded { .app-main .column-left.expanded {
display: block; display: block;
position: absolute; position: absolute;
float: none; float: none;
left: 0; left: 0;
top: 0; top: 0;
.left-sidebar { .left-sidebar {
background-color: var(--color-background); background-color: var(--color-background);
box-shadow: 0 2px 3px 0 hsl(0deg 0% 0% / 10%); box-shadow: 0 2px 3px 0 hsl(0deg 0% 0% / 10%);
border-right: 1px solid var(--color-border-sidebar); border-right: 1px solid var(--color-border-sidebar);
height: 100%; height: 100%;
padding-left: 10px; padding-left: 10px;
width: var(--left-sidebar-width); width: var(--left-sidebar-width);
}
} }
} }