/// If `true`, an off-canvas panel will be fixed-position, and scroll with the screen. Otherwise it will be absolute positioned.
/// @type Bool
-$offcanvas-fixed: true !default;
+$offcanvas-fixed: false !default;
/// Z-index of an off-canvas panel with the `push` transition.
/// @type Number
@include off-canvas-base;
}
+ // Off-canvas container with fixed position
+ .off-canvas-fixed {
+ @include off-canvas-base($fixed: true);
+ }
+
// Off-canvas position classes
.position-left { @include off-canvas-position(left, horizontal); }
.position-right { @include off-canvas-position(right, horizontal); }