ptitlutins/app/assets/css/global.css
2025-08-28 23:08:10 +02:00

35 lines
350 B
CSS

.flex {
display: flex;
&.col {
flex-direction: column;
}
&.row {
flex-direction: row;
}
&.align-center {
align-items: center;
}
&.justify-center {
justify-content: center;
}
&.gap-medium {
gap: 1rem;
}
&.gap-small {
gap: 0.5rem;
}
&.gap-tiny {
gap: 0.25rem;
}
}
.flex1 {
flex: 1;
}