mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
42 lines
539 B
Plaintext
42 lines
539 B
Plaintext
@import '../style/var';
|
|
|
|
.van-row {
|
|
&::after {
|
|
content: "";
|
|
display: table;
|
|
clear: both;
|
|
}
|
|
|
|
&--flex {
|
|
display: flex;
|
|
|
|
&::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;
|
|
}
|
|
}
|