can you add some more details. Maybe some references to material design examples. If you want to request a feature giving as much detail as possible helps the process.
Like this?
<style>
.modal.open{
width: 100%;
max-height: 100%;
height: 100%;
top: 0 !important;
}
</style>
@chi-bd .model-content also need to be tweaked, to move modal-action on bottom
.modal-content {
height: calc(100% - 56px);
}
And still, the close animation works bad. See http://codepen.io/kmmbvnr/pen/pbVZdJ
@wupadach 's second example is epic.
Hi boys, my implementation, i and the my team uses this solution:
.modal.full {
width: 100vw;
max-height: 100vh;
height: 100vh
}
the .full class is add in all project.
Isn't 100vh a bit too high?
@wouerner answer is perfect, but I had to add a top: 0 !important; to make it work properly.
Dont you ?
Most helpful comment
Hi boys, my implementation, i and the my team uses this solution:
the .full class is add in all project.