Improve responsiveness

This commit is contained in:
Peter Maquiran
2021-05-06 13:32:54 +01:00
parent 75f9d789fd
commit 7d1fc22398
5 changed files with 7 additions and 5 deletions
@@ -56,7 +56,7 @@ export class EditEventPage implements OnInit {
}
}
if(this.postEvent.Attendees == null){
if(this.postEvent.Attendees == null) {
this.taskParticipants = []
} else {
@@ -86,10 +86,10 @@ export class EditEventPage implements OnInit {
window.onresize = (event) => {
// if not mobile remove all component
if( window.innerWidth >= 800){
if( window.innerWidth >= 1024) {
this.modalController.dismiss();
}
};
}
}