Skip to content

Commit

Permalink
fix the 1 pixel overlaps with off-canvas is inactive
Browse files Browse the repository at this point in the history
  • Loading branch information
cmwinters committed Jul 29, 2014
1 parent 334d9ab commit 0f6dd1a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scss/foundation/components/_offcanvas.scss
Original file line number Diff line number Diff line change
Expand Up @@ -107,11 +107,11 @@ $menu-slide: "transform 500ms ease" !default;
transition: transform 500ms ease 0s;
-webkit-overflow-scrolling: touch;
@if $position == left {
@include translate3d(-100%,0,0);
@include translate3d(-100.5%,0,0);
left: 0;
}
@if $position == right {
@include translate3d(100%,0,0);
@include translate3d(100.5%,0,0);
right: 0;
}
}
Expand Down

0 comments on commit 0f6dd1a

Please sign in to comment.