new release #190

Merged
b merged 68 commits from staging into main 2024-09-06 18:59:34 +00:00
2 changed files with 31 additions and 7 deletions
Showing only changes of commit b3564389f9 - Show all commits

View File

@ -3,9 +3,26 @@
.container {
display: grid;
grid-template-columns: 0.75fr 1.5fr 0.75fr;
grid-gap: 30px;
flex-grow: 1;
@media only screen and (max-width: 767px) {
gap: 20px;
grid-auto-flow: column;
grid-auto-columns: 100%;
overflow-x: auto;
overscroll-behavior-inline: contain;
scroll-snap-type: inline mandatory;
> * {
scroll-snap-align: start;
}
}
@media only screen and (min-width: 768px) {
grid-template-columns: 0.75fr 1.5fr 0.75fr;
gap: 30px;
}
}
.sidesWrap {
@ -16,8 +33,10 @@
}
.sides {
position: sticky;
top: $header-height + $body-vertical-padding;
@media only screen and (min-width: 768px) {
position: sticky;
top: $header-height + $body-vertical-padding;
}
}
.files {
@ -29,4 +48,9 @@
padding: 10px;
border: 10px solid $overlay-background-color;
border-radius: 4px;
@media only screen and (max-width: 767px) {
max-height: calc(100svh - $header-height + $body-vertical-padding * 2);
overflow-y: auto;
}
}

View File

@ -135,11 +135,11 @@
grid-template-columns: 1fr;
@container (min-width: 204px) {
grid-template-columns: 1fr 1fr;
grid-template-columns: repeat(2, 1fr);
}
@container (min-width: 309px) {
grid-template-columns: 1fr 1fr 1fr;
grid-template-columns: repeat(3, 1fr);
}
gap: 15px;