mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
14 lines
358 B
Plaintext
14 lines
358 B
Plaintext
@import './var.less';
|
|
|
|
:root {
|
|
--van-count-down-text-color: @count-down-text-color;
|
|
--van-count-down-font-size: @count-down-font-size;
|
|
--van-count-down-line-height: @count-down-line-height;
|
|
}
|
|
|
|
.van-count-down {
|
|
color: var(--van-count-down-text-color);
|
|
font-size: var(--van-count-down-font-size);
|
|
line-height: var(--van-count-down-line-height);
|
|
}
|