23 lines
236 B
SCSS
23 lines
236 B
SCSS
.flex-row {
|
|
display: flex;
|
|
}
|
|
|
|
.flex-1 {
|
|
flex: 1;
|
|
}
|
|
|
|
.wrap {
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.j-center {
|
|
justify-content: center;
|
|
}
|
|
|
|
.ai-center {
|
|
align-items: center;
|
|
}
|
|
|
|
.direction-row-reverse {
|
|
flex-direction: row-reverse;
|
|
} |