.off-canvas-wrapper {
width: 100%;
- overflow-x: hidden;
+ height: 100%;
position: relative;
+ overflow: hidden;
backface-visibility: hidden;
-webkit-overflow-scrolling: auto;
}
@include clearfix;
position: relative;
width: 100%;
+ height: 100%;
transition: transform $offcanvas-transition-length $offcanvas-transition-timing;
}
// Container for page content
.off-canvas-content,
.#{$maincontent-class} {
- min-height: 100%;
+ height: 100%;
background: $body-background;
transition: transform $offcanvas-transition-length $offcanvas-transition-timing;
backface-visibility: hidden;
position: absolute;
background: $offcanvas-background;
z-index: $offcanvas-zindex;
- max-height: 100%;
+ height: 100%;
overflow-y: auto;
transform: translateX(0);
}