fix(aio): fix SideNav height on narrow screens (#21538)
Since we specify `bottom: 0`, specifying the height is unnecessary and leads to wrong height (unless updated) on narrow screens where the topbar height is decreased. Partly addresses #21520. PR Close #21538
This commit is contained in:
parent
f9381e42de
commit
1b2271a3b1
|
@ -35,7 +35,6 @@ mat-sidenav.mat-sidenav.sidenav {
|
||||||
min-width: 260px;
|
min-width: 260px;
|
||||||
background-color: $offwhite;
|
background-color: $offwhite;
|
||||||
box-shadow: 6px 0 6px rgba(0,0,0,0.10);
|
box-shadow: 6px 0 6px rgba(0,0,0,0.10);
|
||||||
height: calc(100vh - 64px);
|
|
||||||
|
|
||||||
&.collapsed {
|
&.collapsed {
|
||||||
top: 56px;
|
top: 56px;
|
||||||
|
|
Loading…
Reference in New Issue