35 lines
350 B
CSS
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;
|
|
}
|