code.gitea.io/gitea@v1.21.7/web_src/css/modules/flexcontainer.css (about)

     1  /* container for full-page content with sidebar on left */
     2  
     3  .flex-container {
     4    display: flex !important;
     5    gap: 16px;
     6  }
     7  
     8  .flex-container-nav {
     9    width: 240px;
    10  }
    11  
    12  .flex-container-main {
    13    flex: 1;
    14    min-width: 0; /* make the "text truncate" work, otherwise the flex axis is not limited and the text just overflows */
    15  }
    16  
    17  @media (max-width: 767.98px) {
    18    .flex-container {
    19      flex-direction: column;
    20    }
    21    .flex-container-nav {
    22      width: auto;
    23    }
    24  }