I am trying to implement a simple page with a login form (user/password text input + 1 button). I would like to fix this form to the bottom of a ion-content. But it does not wor
I ended up more or less circumventing Ionic's intentions and using a flex box layout:
... ... ...
The SCSS, using Ionic's mixins, looks something like this:
.flex-wrapper { @include display-flex; @include flex-direction(column); ... } .flex-1 { @include flex(1); ... }