This is about Bulma.
It is a bug in IE11 browser. Other browsers are not concerned.
This is about the Bulma CSS framework
I'm using Bulma version 0.7.1
My browser IE11
The modal component is not scrollable in IE11 so user can interact with de bottom hidden part.
Create a modal with a lot of content (depending on your screen resolution) to force bulma to create an scroll.
<div class="modal" class="is-active">
<div class="modal-background"></div>
<div class="modal-card">
<!-- A lot of content depending on your screen resolution-->
</div>
</div>
</div>
The modal-card content is scrollable
The modal-card is not scrollable
looks fixed in #1909
I found this still an issue but fixed it like this:
.modal-card{
overflow: auto;
}
Most helpful comment
I found this still an issue but fixed it like this: