.app-main {
  display: flex;
  flex-direction: column;
  @media (min-width: 768px) {
    flex-direction: row;
    overflow-y: hidden;
  }
  flex: 1;

  & main {
    flex: 1;

    display: flex;

    & > turbo-frame {
      flex: 1;
      display: flex;

      &.no-flex {
        display: block;
      }
    }

    & > turbo-frame:empty {
      flex: 0;
    }
  }
}
