mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
[improvement] Tag: add less vars (#3087)
This commit is contained in:
parent
5f49cfc85f
commit
861357c015
@ -148,6 +148,15 @@
|
|||||||
@tabs-line-height: 44px;
|
@tabs-line-height: 44px;
|
||||||
@tabs-card-height: 30px;
|
@tabs-card-height: 30px;
|
||||||
|
|
||||||
|
// Tag
|
||||||
|
@tag-padding: .2em .5em;
|
||||||
|
@tag-font-size: 10px;
|
||||||
|
@tag-medium-font-size: 12px;
|
||||||
|
@tag-large-font-size: 14px;
|
||||||
|
@tag-text-color: @white;
|
||||||
|
@tag-border-radius: .2em;
|
||||||
|
@tag-round-border-radius: .8em;
|
||||||
|
|
||||||
// Toast
|
// Toast
|
||||||
@toast-max-width: 70%;
|
@toast-max-width: 70%;
|
||||||
@toast-font-size: 14px;
|
@toast-font-size: 14px;
|
||||||
|
@ -139,6 +139,8 @@ export default {
|
|||||||
|
|
||||||
<style lang="less">
|
<style lang="less">
|
||||||
.demo-tag {
|
.demo-tag {
|
||||||
|
background-color: #fff;
|
||||||
|
|
||||||
.van-tag + .van-tag {
|
.van-tag + .van-tag {
|
||||||
margin-left: 10px;
|
margin-left: 10px;
|
||||||
}
|
}
|
||||||
|
@ -1,16 +1,16 @@
|
|||||||
@import '../style/var';
|
@import '../style/var';
|
||||||
|
|
||||||
.van-tag {
|
.van-tag {
|
||||||
color: @white;
|
color: @tag-text-color;
|
||||||
font-size: 10px;
|
font-size: @tag-font-size;
|
||||||
padding: .2em .5em;
|
padding: @tag-padding;
|
||||||
line-height: normal;
|
line-height: normal;
|
||||||
border-radius: .2em;
|
border-radius: @tag-border-radius;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
|
|
||||||
&::after {
|
&::after {
|
||||||
border-color: currentColor;
|
border-color: currentColor;
|
||||||
border-radius: .4em;
|
border-radius: @tag-border-radius * 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
&--mark {
|
&--mark {
|
||||||
@ -23,18 +23,18 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
&--round {
|
&--round {
|
||||||
border-radius: .8em;
|
border-radius: @tag-round-border-radius;
|
||||||
|
|
||||||
&::after {
|
&::after {
|
||||||
border-radius: 1.6em;
|
border-radius: @tag-round-border-radius * 2;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&--medium {
|
&--medium {
|
||||||
font-size: 12px;
|
font-size: @tag-medium-font-size;
|
||||||
}
|
}
|
||||||
|
|
||||||
&--large {
|
&--large {
|
||||||
font-size: 14px;
|
font-size: @tag-large-font-size;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user