Last CSS almost did the trick for me but it doesn’t work well (div size not calculated) with card class when you make it appear and disappear multiple time with ng-hide updates.
What I made to make it working
.padding_this{
padding-bottom:300px;
}
This one just “push” down the other div out of the seen screen, adapt size to fit your needs.
<div class="padding_this text-center" ng-hide="chargement != 1" style="{{remove_padding}}">
Then I just put a scope variable to apply a style once DOM is fully loaded.
$ionicPlatform.ready(function()
{
$scope.remove_padding = "padding-bottom:0px !important;";
...
And when the platform is ready I apply the style to override the padding-bottom.
Works like a charm but it’s such a hack… hope it will get fixed anyway 