© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•10mo ago•
3 replies
suroso

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
php artisan about
as well.
Untitled.png
Untitled.png
Solution
Thanks for the insight — you were right!
I’m using a custom theme, and the issue was caused by this CSS:
.fi-body .fi-layout {
    background: #e9f0ff;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.dark .fi-body .fi-layout {
    background: linear-gradient(135deg, #1c1c1e, #2c2c2e, #3a3a3c);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.fi-body .fi-layout {
    background: #e9f0ff;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.dark .fi-body .fi-layout {
    background: linear-gradient(135deg, #1c1c1e, #2c2c2e, #3a3a3c);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}


Apparently, applying
backdrop-filter
backdrop-filter
directly to
.fi-layout caused
.fi-layout caused
a scroll glitch inside the modal. After disabling it, the scroll works as expected again.

Thanks a lot!
Jump to solution
Filament banner
FilamentJoin
A powerful open source UI framework for Laravel • Build and ship admin panels & apps fast with Livewire
20,307Members
Resources
Was this page helpful?

Similar Threads

Recent Announcements

Similar Threads

Edit create modal actions
FilamentFFilament / ❓┊help
15mo ago
Open edit modal right after create
FilamentFFilament / ❓┊help
3y ago
Scroll in modal
FilamentFFilament / ❓┊help
3y ago
Open action modals inside a modal
FilamentFFilament / ❓┊help
3y ago