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

fix: change z-index to style variable (#412)

This commit is contained in:
mengxiong10
2020-01-31 19:54:23 +08:00
parent 513d10abe4
commit 82080aae4e
2 changed files with 3 additions and 1 deletions
+1 -1
View File
@@ -105,7 +105,7 @@
margin-top: 1px;
margin-bottom: 1px;
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
z-index: 2001;
z-index: $popup-z-index;
}
.#{$namespace}-datepicker-sidebar {
+2
View File
@@ -5,6 +5,8 @@ $primary-color: #1284e7 !default;
$today-color: mix(#fff, $primary-color, 10%) !default;
$popup-z-index: 2001 !default;
$input-border-color: #ccc !default;
$input-color: #555 !default;
$input-hover-border-color: #409aff !default;