Skip to content
This repository has been archived by the owner on Jan 13, 2025. It is now read-only.

Commit

Permalink
fix(drawer): Fix Temporary Drawer on IE11
Browse files Browse the repository at this point in the history
  • Loading branch information
BBosman committed Feb 7, 2017
1 parent 1097e6f commit 19ff4b7
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/mdc-drawer/temporary/mdc-temporary-drawer.scss
Original file line number Diff line number Diff line change
Expand Up @@ -67,13 +67,15 @@
width: calc(100% - 56px);
max-width: 280px;
height: 100%;
transform: translateX(-107%);
transform: translateX(calc(-100% - 20px));
will-change: transform;
box-sizing: border-box;
overflow: hidden;
touch-action: none;

@include mdc-rtl(".mdc-temporary-drawer") {
transform: translateX(107%);
transform: translateX(calc(100% + 20px));
}

Expand Down

0 comments on commit 19ff4b7

Please sign in to comment.