Add .flex-col utility class

This commit is contained in:
Timothée Goguely 2024-09-12 19:09:08 +02:00
parent f91a960619
commit 925b0f8584

View file

@ -9,3 +9,9 @@
column-gap: var(--column-gap, var(--gutter, var(--space-8)));
row-gap: var(--row-gap, var(--gutter, var(--space-8)));
}
.flex-col {
--direction: column;
--justify: center;
--row-gap: var(--space-16);
}