mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-05-01 21:56:35 +08:00
33 lines
442 B
Plaintext
33 lines
442 B
Plaintext
.van-row {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
|
|
&--nowrap {
|
|
flex-wrap: nowrap;
|
|
}
|
|
|
|
&--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;
|
|
}
|
|
}
|