Cannot Scroll Inside Edit/Create Modal
Hello, I’d like to report a bug or ask if anyone else has experienced the same issue.
When I open a modal (either Edit or Create), the scroll doesn’t work. Has anyone else encountered this issue? Is there any solution?
I’ve attached a screenshot and the output of
php artisan about
as well.

Solution:Jump to solution
Thanks for the insight — you were right!
I’m using a custom theme, and the issue was caused by this CSS:
```css
.fi-body .fi-layout {
background: #e9f0ff;...
2 Replies
Nope, not experieenced it. Be a pretty common complaint.
Have you put a custom theme in, or doing anything with CSS?
Solution
Thanks for the insight — you were right!
I’m using a custom theme, and the issue was caused by this CSS:
Apparently, applying
backdrop-filter
directly to .fi-layout caused
a scroll glitch inside the modal. After disabling it, the scroll works as expected again.
Thanks a lot!