2
0
mirror of https://github.com/tenrok/vue2-datepicker.git synced 2026-06-06 13:22:26 +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 {
color: mix(#fff, $primary-color, 10%);
color: $today-color;
}
.cell.not-current-month {
color: #ccc;
+2
View File
@@ -1,6 +1,8 @@
$default-color: #73879c !default;
$primary-color: #1284e7 !default;
$today-color: mix(#fff, $primary-color, 10%) !default;
$input-border-color: #ccc !default;
$input-color: #555 !default;
$input-hover-border-color: #409aff !default;