ionic modal open in full screen by default code example
Example: ionic modal not full screen
// I made this by adding a custom class while presenting modal
this.notifyService.presentModal({
component: AwesomeComponent,
cssClass: 'small-modal',
backdropDismiss: true
});
// and than defined the scss/css in global.scss
.small-modal{
.modal-wrapper {
position: absolute;
bottom: 0;
min-height: initial;
top: initial;
height: 50%;
}
}