mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
41 lines
562 B
Plaintext
41 lines
562 B
Plaintext
@import '../common/style/var.less';
|
|
|
|
.van-tag {
|
|
color: @white;
|
|
font-size: 10px;
|
|
padding: .2em .5em;
|
|
line-height: normal;
|
|
border-radius: .2em;
|
|
display: inline-block;
|
|
|
|
&::after {
|
|
border-color: currentColor;
|
|
border-radius: .4em;
|
|
}
|
|
|
|
&--mark {
|
|
padding-right: .6em;
|
|
border-radius: 0 .8em .8em 0;
|
|
|
|
&::after {
|
|
border-radius: 0 1.6em 1.6em 0;
|
|
}
|
|
}
|
|
|
|
&--round {
|
|
border-radius: .8em;
|
|
|
|
&::after {
|
|
border-radius: 1.6em;
|
|
}
|
|
}
|
|
|
|
&--medium {
|
|
font-size: 12px;
|
|
}
|
|
|
|
&--large {
|
|
font-size: 14px;
|
|
}
|
|
}
|