Bubble card Popup fullscreen 100% width

Is it possible for the popup that I create with Bubble Card to open to the full width of the screen? Or as wide as the available space allows?

Perhaps a long shot, but try to add this code in themes file - i just installed one theme i like and added code below at the end - it causes all popups to show almost whole width of the screen (set with “min-width” number).

#(i'm not sure if this first line is needed or not...)
  card-mod-theme: "name of your theme" 

  card-mod-more-info-yaml: |
    $: |
      .mdc-dialog {
        backdrop-filter: blur(7px) !important;
        -webkit-backdrop-filter: blur(4px) !important;
        background: rgba(0,0,0,0.1);
      }      
      .mdc-dialog .mdc-dialog__container .mdc-dialog__surface {
          border-radius: 2em;
          box-shadow: 0em 0em 2em white;
          min-width: 95% !important;
          position: absolute;          
        }

then just reload themes and select your new theme as default.

EDIT: you must have card-mod addon installed, of course (from hacs store).

Thank you for your answer.
But i alreaday fount out, that bubble card is able to do this out of the box.