/* Desktop creation pages should use the available viewport instead of ending at their initial content height. */
@media (min-width: 1050px) and (min-height: 650px) {
  .production-workspace {
    display: flex;
    flex-direction: column;
    height: calc(100dvh - var(--topbar-height) - 56px);
    min-height: 640px;
  }

  .production-workspace .production-split {
    flex: 1;
    min-height: 0;
  }

  .production-workspace .production-history-open {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 10px;
    padding: 8px 31px 8px 8px;
  }

  .production-workspace .production-history-thumb {
    width: 52px;
    height: 52px;
  }
}
