Browse Source

upd: scss variable

richard1015 5 years ago
parent
commit
d66f929b4a

+ 2 - 2
src/packages/actionsheet/actionsheet.scss

@@ -66,11 +66,11 @@
   color: $as-confirm-btn-color;
   .confirm-btn {
     width: 100%;
-    height: 50px;
+    height: 40px;
     background: $as-confirm-btn-bg;
     border-radius: 4px;
     font-size: $as-base-font-size;
-    line-height: 50px;
+    line-height: 40px;
     text-align: center;
   }
 }

+ 1 - 1
src/packages/tabbar/tabbar.scss

@@ -25,7 +25,7 @@
   flex: 1;
   text-align: center;
   text-decoration: none;
-  color: $text-color;
+  color: $title-color;
   height: 100%;
   display: flex;
   justify-content: center;

+ 3 - 3
src/styles/variable.scss

@@ -1,10 +1,10 @@
 // ---- color ---- 这是之前在用的颜色,后续开发中使用新的色值
-$primary-color: #f0250f !default;
+$primary-color: #e1251b !default;
 $normal-color: #848484 !default;
 $link-color: $primary-color !default;
 $link-hover-color: mix($link-color, #000, 80%) !default;
-$title-color: #2d2d2d !default;
-$text-color: #848484 !default;
+$title-color: #323232 !default;
+$text-color: #646464 !default;
 $light-color: #f6f6f6 !default;
 $dark-color: #dadada !default;