1
1
mirror of https://github.com/go-gitea/gitea synced 2024-06-27 13:45:51 +00:00
gitea/web_src/css/modules/flexcontainer.css
2023-12-24 22:39:02 +08:00

25 lines
450 B
CSS

/* container for full-page content with sidebar on left */
.flex-container {
display: flex !important;
gap: 16px;
}
.flex-container-nav {
width: 240px;
}
.flex-container-main {
flex: 1;
min-width: 0; /* make the "text truncate" work, otherwise the flex axis is not limited and the text just overflows */
}
@media (max-width: 767.98px) {
.flex-container {
flex-direction: column;
}
.flex-container-nav {
width: auto;
}
}