feat(style): component using basic css variables
This commit is contained in:
@@ -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
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user