Fix flex classes

This commit is contained in:
Timothée Goguely 2024-09-18 09:29:42 +02:00
parent 36146497ec
commit 978ad16767
5 changed files with 13 additions and 10 deletions

View file

@ -13,15 +13,20 @@
.flex-col,
.flex-col-reverse {
flex-direction: column;
flex-wrap: no-wrap;
justify-content: center;
flex-wrap: nowrap;
--row-gap: var(--space-16);
}
.flex-col-reverse {
flex-direction: column-reverse;
}
.justify-center {
justify-content: center;
}
.items-center {
align-items: center;
}
.order-first {
order: -9999;
}