Reputation: 39
I want to blur the background when clicking the q-dialog. any idea how to go about this?
Upvotes: 1
Views: 3858
Reputation: 126
What I would do is to extend the q-dialog__backdrop class
<style>
.q-dialog__backdrop
{
backdrop-filter: blur(7px);
}
</style>
Upvotes: 6