2
0
mirror of https://github.com/tenrok/vue-select.git synced 2026-05-17 02:29:37 +03:00

fix: set !default for $vs-controls-deselect-text-shadow (#1468)

- added missing `!default` for $vs-controls-deselect-text-shadow,
  which was the only one not having it
- `!default` is necessary in order to be able override the variable
This commit is contained in:
Daniel Molnar
2021-07-30 02:37:49 +02:00
committed by GitHub
parent 335920b586
commit 0f763f3ac4
+1 -1
View File
@@ -28,7 +28,7 @@ $vs-border-color: map_get($vs-colors, 'lightest') !default;
// Component Controls: Clear, Open Indicator
$vs-controls-color: map_get($vs-colors, 'light') !default;
$vs-controls-size: 1 !default;
$vs-controls-deselect-text-shadow: 0 1px 0 #fff;
$vs-controls-deselect-text-shadow: 0 1px 0 #fff !default;
// Selected
$vs-selected-bg: #f0f0f0 !default;