update board

This commit is contained in:
Simon Vieille 2022-10-26 22:00:44 +02:00
parent 4344bf1561
commit ff7321a8c1
Signed by: deblan
GPG key ID: 579388D585F70417

View file

@ -15,7 +15,7 @@
}
.board {
flex-wrap: wrap;
flex-wrap: row wrap;
}
.board-column:first-child {
@ -24,4 +24,23 @@
.board-column {
margin-bottom: .5rem !important;
flex: 1 !important;
}
@media screen and (max-width: 992px) {
.item {
flex-basis: 25%;
}
}
@media screen and (max-width: 640px) {
.item {
flex-basis: 50%;
}
}
@media screen and (max-width: 420px) {
.item {
flex-basis: 100%;
}
}