mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
* perf: remove CSS variables polyfill * style: fix missing calc value * perf: reduce some useless css vars
17 lines
297 B
Plaintext
17 lines
297 B
Plaintext
@import '../common/style/var.less';
|
|
|
|
.van-circle {
|
|
position: relative;
|
|
display: inline-block;
|
|
text-align: center;
|
|
|
|
&__text {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 0;
|
|
width: 100%;
|
|
transform: translateY(-50%);
|
|
color: var(--circle-text-color, @circle-text-color);
|
|
}
|
|
}
|