You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
560 B
43 lines
560 B
@import '../style/var';
|
|
|
|
.van-row {
|
|
&::after {
|
|
display: table;
|
|
clear: both;
|
|
content: '';
|
|
}
|
|
|
|
&--flex {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
|
|
&::after {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
&--justify-center {
|
|
justify-content: center;
|
|
}
|
|
|
|
&--justify-end {
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
&--justify-space-between {
|
|
justify-content: space-between;
|
|
}
|
|
|
|
&--justify-space-around {
|
|
justify-content: space-around;
|
|
}
|
|
|
|
&--align-center {
|
|
align-items: center;
|
|
}
|
|
|
|
&--align-bottom {
|
|
align-items: flex-end;
|
|
}
|
|
}
|