Skip to content

Commit

Permalink
Add Vendor Prefixes for CSS transform
Browse files Browse the repository at this point in the history
Add Vendor Prefixes for CSS transform.

Many thanks to @diggy for finding there was a problem in my Pen on Chrome.

Silly me for forgetting to put the vendor prefixes.
  • Loading branch information
winghouchan committed Apr 21, 2014
1 parent b08ca44 commit 3b685ab
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions scss/foundation/components/_offcanvas.scss
Expand Up @@ -369,6 +369,10 @@ $menu-slide: "transform 500ms ease" !default;
}
.offcanvas-overlap {
.left-off-canvas-menu, .right-off-canvas-menu {
-ms-transform: none;
-webkit-transform: none;
-moz-transform: none;
-o-transform: none;
transform: none;
z-index: 1003;
}
Expand Down

0 comments on commit 3b685ab

Please sign in to comment.