I've tried everything, don't get it.
Just want to fix the modal popup window to the bottom right corner of the screen, that's it.
This is how I'm showing my modal:
let modal = this._ModalController.create(MyPage, { group: group }, {cssClass: 'custom-modal' });
modal.present();
And I was trying css, but with no luck:
.custom-modal {
.modal-wrapper {
position: absolute !important;
bottom: 0px;
right: 0px;
}
}