Skip to content
This repository has been archived by the owner on Sep 5, 2024. It is now read-only.

Fix sidenav not allowing flex children #737

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/components/sidenav/_sidenav.scss
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ md-sidenav {
}
&.md-closed-add,
&.md-closed-remove {
display: block;
display: flex;
/* this is required as of 1.3x to properly
apply all styling in a show/hide animation */
transition: 0s all;
Expand All @@ -29,7 +29,7 @@ md-sidenav {
&.md-locked-open.md-closed.md-sidenav-left,
&.md-locked-open.md-closed.md-sidenav-right {
position: static;
display: block;
display: flex;
transform: translate3d(0, 0, 0);
}

Expand Down