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
+6 -6
View File
@@ -14,7 +14,7 @@
.van-nav-bar {
position: relative;
z-index: var(--van-nav-bar-z-index);
line-height: @line-height-lg;
line-height: var(--van-line-height-lg);
text-align: center;
background-color: var(--van-nav-bar-background-color);
user-select: none;
@@ -43,7 +43,7 @@
}
&__arrow {
margin-right: @padding-base;
margin-right: var(--van-padding-base);
font-size: var(--van-nav-bar-arrow-size);
}
@@ -51,7 +51,7 @@
max-width: 60%;
margin: 0 auto;
color: var(--van-nav-bar-title-text-color);
font-weight: @font-weight-bold;
font-weight: var(--van-font-weight-bold);
font-size: var(--van-nav-bar-title-font-size);
}
@@ -62,12 +62,12 @@
bottom: 0;
display: flex;
align-items: center;
padding: 0 @padding-md;
font-size: @font-size-md;
padding: 0 var(--van-padding-md);
font-size: var(--van-font-size-md);
cursor: pointer;
&:active {
opacity: @active-opacity;
opacity: var(--van-active-opacity);
}
}
+5 -5
View File
@@ -1,10 +1,10 @@
@import '../style/var.less';
@nav-bar-height: 46px;
@nav-bar-background-color: @white;
@nav-bar-background-color: var(--van-white);
@nav-bar-arrow-size: 16px;
@nav-bar-icon-color: @blue;
@nav-bar-text-color: @blue;
@nav-bar-title-font-size: @font-size-lg;
@nav-bar-title-text-color: @text-color;
@nav-bar-icon-color: var(--van-blue);
@nav-bar-text-color: var(--van-blue);
@nav-bar-title-font-size: var(--van-font-size-lg);
@nav-bar-title-text-color: var(--van-text-color);
@nav-bar-z-index: 1;