(js) Allow hiding the sidenav on large screens

Position of button is not final as it causes an issue with the tabs of
the Calendar module.
This commit is contained in:
Francis Lachapelle
2015-11-27 16:40:23 -05:00
parent 403d6fa54f
commit d19593afc3
6 changed files with 35 additions and 8 deletions
@@ -7,9 +7,14 @@ $sidenav-min-space: $pitch;
md-sidenav {
&.md-locked-open {
@include from(lg) {
@include flex-col(lg, 4, 1, 0)
@include flex-col(lg, 4, 1, 0);
// Custom representation of a closed sidenav where the sidenav is pushed to the left;
// Used in in "locked open" mode.
&.sg-closed.md-sidenav-left {
transform: translateX(-100%);
margin-right: -20vw; // See views/_views.scss
}
}
}
}