16 lines
191 B
SCSS
16 lines
191 B
SCSS
|
.flex {
|
||
|
display: flex;
|
||
|
|
||
|
&.align-center {
|
||
|
align-items: center;
|
||
|
}
|
||
|
|
||
|
&.align-start {
|
||
|
align-items: flex-start;
|
||
|
}
|
||
|
|
||
|
&.justify-between {
|
||
|
justify-content: space-between;
|
||
|
}
|
||
|
}
|