Search code examples
quasar-frameworkquasar

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?


Solution

  • What I would do is to extend the q-dialog__backdrop class

    <style>
      .q-dialog__backdrop
      {
        backdrop-filter: blur(7px);
      }
    </style>