/* Installed PWA: use the whole application viewport, without the desktop phone frame. */
@media (display-mode: standalone), (display-mode: fullscreen) {
  body {
    align-items: stretch;
    justify-content: stretch;
  }

  .window {
    width: 100vw;
    height: 100vh;
    max-width: none;
    max-height: none;
    border-radius: 0;
    box-shadow: none;
  }
}
