mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
It looks ike these CSS rules are actually being re-imported multiple times, which is bloating the output.
16 lines
322 B
SCSS
16 lines
322 B
SCSS
.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;
|
|
}
|