chore: move mixins

This commit is contained in:
chenjiahan
2020-07-05 16:00:10 +08:00
parent 3a2e20eb52
commit 4a25ebf9ab
14 changed files with 844 additions and 0 deletions
+41
View File
@@ -0,0 +1,41 @@
@import '../style/var';
.van-row {
&::after {
display: table;
clear: both;
content: '';
}
&--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;
}
}