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) {
.default-sidebar-behaviour {
.app-main .column-left {
.app-main .column-left,
.header-main .column-left {
display: none;
}
&.expanded {
display: block;
position: absolute;
float: none;
left: 0;
top: 0;
.app-main .column-left.expanded {
display: block;
position: absolute;
float: none;
left: 0;
top: 0;
.left-sidebar {
background-color: var(--color-background);
box-shadow: 0 2px 3px 0 hsl(0deg 0% 0% / 10%);
border-right: 1px solid var(--color-border-sidebar);
height: 100%;
padding-left: 10px;
width: var(--left-sidebar-width);
}
.left-sidebar {
background-color: var(--color-background);
box-shadow: 0 2px 3px 0 hsl(0deg 0% 0% / 10%);
border-right: 1px solid var(--color-border-sidebar);
height: 100%;
padding-left: 10px;
width: var(--left-sidebar-width);
}
}