/* Constrain modals to the phone frame on desktop */
.yb-modal {
  left:var(--yard-frame-left, 0px);
  top:var(--yard-frame-top, 0px);
  width:var(--yard-frame-width, 100vw);
  height:var(--yard-frame-height, 100vh);
  padding:16px;
}
.yb-modal-card {
  width:min(100%, 420px);
  max-width:calc(var(--yard-frame-width, 100vw) - 32px);
  max-height:calc(var(--yard-frame-height, 100vh) - 32px);
}


