Hello,
This is about Bulma, and is a bug/feature/question :)
This is about the Bulma CSS framework
I'm using Bulma version [0.6.1]
My browser is: Chrome
The issue is related to #1154
I created https://github.com/laravel-enso/enso with Bulma, VueJs and Laravel.
The project is pretty much polished and I would like to start using it in my business projects.
But I still have this one last problem. I have a dedicated modal component that is reused in other components, and the modal not showing correctly in this situation. I feel it's too much of limiting factor to have to put the modal directly into <body>...</body>, and it seems that it affects others too.
Besides the modal background showing funny, the div below the modal is scrollable while the modal is showing.
Maybe there is a solution, or maybe you can suggest another approach.
This is a screenshot with a dedicated vue component for forms

Here is another one from a documents component

Thank you in advance!
Since the modal is using position: fixed, it should work with a proper z-index. Have you tried increasing it?
Yes, first thing.
If you like, you can try the online demo and play in the console, maybe something else is wrong.
Thanks.
2 of your 3 siblings are positioned:

.navbar and .aside are fixed with a high z-index. The .main-content is not positioned and has no z-index, but it contains the modal.
Just add:
.main-content {
position: relative;
z-index: 2000;
}
I really need to learn CSS.
Thank you !
Most helpful comment
2 of your 3 siblings are positioned:
.navbarand.asideare fixed with a highz-index. The.main-contentis not positioned and has noz-index, but it contains the modal.Just add: