update board

This commit is contained in:
Simon Vieille 2022-10-26 22:10:43 +02:00
parent 524b15de88
commit d179df2388
Signed by: deblan
GPG key ID: 579388D585F70417

View file

@ -18,29 +18,27 @@
flex-wrap: wrap; flex-wrap: wrap;
} }
.board-column:first-child {
margin-left: 0 !important;
}
.board-column { .board-column {
margin-bottom: .5rem !important; margin-bottom: .5rem !important;
width: 25%; margin-left: .5rem !important;
margin-right: .5rem !important;
width: calc(25% - 2 * 0.rem);
} }
@media screen and (max-width: 992px) { @media screen and (max-width: 992px) {
.board-colomn { .board-colomn {
width: 33%; width: calc(33% - 2 * 0.rem);
} }
} }
@media screen and (max-width: 640px) { @media screen and (max-width: 640px) {
.board-colomn { .board-colomn {
width: 50%; width: calc(50% - 2 * 0.rem);
} }
} }
@media screen and (max-width: 420px) { @media screen and (max-width: 420px) {
.board-colomn { .board-colomn {
width: 100%; width: calc(100% - 2 * 0.rem);
} }
} }