#viewPortContainer {
  width: 100%;
  overflow: hidden;
  display: block;
  /* flex-grow does not work here (iOS Safari) */
  /* force container to fill all available space */
  flex-basis: 100%;
  flex-shrink: 1;
  max-height: 100%;

  & > .sapUiComponentContainer {
    overflow-y: clip;
  }
}

@media print {
  #shell-shapes {
    display: none;
  }

  .sapUShellApplicationContainer {
    display: block;

    .sapUiView {
      display: block;
    }
  }
}
