feat(style): component using basic css variables

This commit is contained in:
chenjiahan
2021-06-12 15:52:22 +08:00
committed by neverland
parent aef2579a95
commit 710aebaee4
117 changed files with 707 additions and 705 deletions
+1 -1
View File
@@ -41,7 +41,7 @@
left: 0;
box-sizing: border-box;
width: 100%;
padding: 0 @padding-base;
padding: 0 var(--van-padding-base);
color: var(--van-circle-text-color);
font-weight: var(--van-circle-text-font-weight);
font-size: var(--van-circle-text-font-size);
+6 -6
View File
@@ -1,9 +1,9 @@
@import '../style/var.less';
@circle-size: 100px;
@circle-color: @blue;
@circle-layer-color: @white;
@circle-text-color: @text-color;
@circle-text-font-weight: @font-weight-bold;
@circle-text-font-size: @font-size-md;
@circle-text-line-height: @line-height-md;
@circle-color: var(--van-blue);
@circle-layer-color: var(--van-white);
@circle-text-color: var(--van-text-color);
@circle-text-font-weight: var(--van-font-weight-bold);
@circle-text-font-size: var(--van-font-size-md);
@circle-text-line-height: var(--van-line-height-md);