Hey there, I've got a modal with a custom size:
var dialog = modal.open({
template: content,
size: size,
controller:'someController'
controllerAs: 'dialog'
});
.modal-custom-lg {
width:90%;
max-width:1200px;
height:100%;
}
The width is working fine, but the height isn't. I'm trying to make my modal fullscreen. Does anyone have any suggestions on how to achieve this?