I\'m using Foundation\'s off-canvas navigation, attempting to make a navigation that takes up the full height of the device.
By default, the height of the menu opti
This is the best way I've found and its pretty simple and non-hackish
NOTE: this only works on some css3 browsers. Compatible Browsers
.off-canvas-wrap {
.inner-wrap{
min-height: 100vh;
}
}
.off-canvas-wrap, .off-canvas-wrap > .inner-wrap {
min-height: 100vh;
}
.off-canvas-wrapper-inner, .off-canvas{
min-height: 100vh;
}