2
0
mirror of https://github.com/tenrok/vue2-datepicker.git synced 2026-06-23 07:00:36 +03:00

chore: add $today-color scss varible (#383)

This commit is contained in:
mengxiong10
2019-12-06 10:02:47 +08:00
parent 0784c944a3
commit 327937b9ce
2 changed files with 3 additions and 1 deletions
+1 -1
View File
@@ -262,7 +262,7 @@
} }
.today { .today {
color: mix(#fff, $primary-color, 10%); color: $today-color;
} }
.cell.not-current-month { .cell.not-current-month {
color: #ccc; color: #ccc;
+2
View File
@@ -1,6 +1,8 @@
$default-color: #73879c !default; $default-color: #73879c !default;
$primary-color: #1284e7 !default; $primary-color: #1284e7 !default;
$today-color: mix(#fff, $primary-color, 10%) !default;
$input-border-color: #ccc !default; $input-border-color: #ccc !default;
$input-color: #555 !default; $input-color: #555 !default;
$input-hover-border-color: #409aff !default; $input-hover-border-color: #409aff !default;