lés
lés

Reputation: 39

Quasar Framework: How to blur background in q-dialog?

I want to blur the background when clicking the q-dialog. any idea how to go about this?

Upvotes: 1

Views: 3858

Answers (1)

Jhoe Marx
Jhoe Marx

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

Related Questions