mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-28 21:07:16 +00:00
Uses strategy from this forum comment: http://foundation.zurb.com/forum/posts/547#comment_8840
18 lines
358 B
SCSS
18 lines
358 B
SCSS
@import "compass/css3/transition";
|
|
|
|
.off-canvas-fixed {
|
|
@include transition(transform 1000ms ease-in-out);
|
|
}
|
|
|
|
.move-right > .off-canvas-fixed {
|
|
height: 100%;
|
|
-webkit-transform: translate3d(15.625rem, 0, 0);
|
|
transform: translate3d(15.625rem, 0, 0);
|
|
}
|
|
|
|
.left-off-canvas-menu {
|
|
-webkit-transform: none;
|
|
transform: none;
|
|
margin-left: -15.625rem;
|
|
}
|