[improvement] rename packages dir to src (#3659)

This commit is contained in:
neverland
2019-06-27 11:25:57 +08:00
committed by GitHub
parent 8489918dca
commit 75c79b7044
619 changed files with 21 additions and 21 deletions
+40
View File
@@ -0,0 +1,40 @@
@import '../style/var';
.van-tag {
display: inline-block;
padding: @tag-padding;
color: @tag-text-color;
font-size: @tag-font-size;
line-height: normal;
border-radius: @tag-border-radius;
&::after {
border-color: currentColor;
border-radius: @tag-border-radius * 2;
}
&--mark {
padding-right: .6em;
border-radius: 0 .8em .8em 0;
&::after {
border-radius: 0 1.6em 1.6em 0;
}
}
&--round {
border-radius: @tag-round-border-radius;
&::after {
border-radius: @tag-round-border-radius * 2;
}
}
&--medium {
font-size: @tag-medium-font-size;
}
&--large {
font-size: @tag-large-font-size;
}
}