vant-fork
Version:
Lightweight Mobile UI Components built on Vue
42 lines (32 loc) • 541 B
CSS
@import './common/var.css';
.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: bottom;
}
}