What I have found is you can wrap the ion-slide-box
in a div, then set the contents of the div to be full height with a bit of sass:
.wrapper {
height:100%;
width:100%;
* {
height:100%;
width:100%;
}
}
or, of course, css:
.wrapper * {
height:100%;
width:100%;
}