Currently in my Ionic 3 project, I am utilizing a popover with a set height using the following code snippet:
editOpty(rw){
let popover = this.editOptyPopup.create(EditOptyPopoverComponent, rw, { cssClass: 'edit-opty-popover'});
popover.present({
});
}
The corresponding CSS looks like this:
.edit-opty-popover .popover-content{
width: 1400px;
}
However, the limitation of the fixed width is evident. Ideally, I would like the popup width to be slightly smaller than the width of the screen it appears on.