2
0
mirror of https://github.com/tenrok/vue-select.git synced 2026-06-22 10:30:34 +03:00

feat: add $vs-component-bg to sass variables (#1528)

#1490
This commit is contained in:
Jeff Sagal
2021-10-20 09:31:37 -07:00
committed by GitHub
parent e8d7abbf33
commit 129bfd7034
2 changed files with 26 additions and 25 deletions
+2 -1
View File
@@ -2,10 +2,11 @@ $vs-colors: (
lightest: rgba(60, 60, 60, 0.26), lightest: rgba(60, 60, 60, 0.26),
light: rgba(60, 60, 60, 0.5), light: rgba(60, 60, 60, 0.5),
dark: #333, dark: #333,
darkest: rgba(0, 0, 0, .15), darkest: rgba(0, 0, 0, 0.15),
) !default; ) !default;
// Global Component Variables // Global Component Variables
$vs-component-bg: none !default;
$vs-component-line-height: 1.4 !default; $vs-component-line-height: 1.4 !default;
$vs-component-placeholder-color: inherit !default; $vs-component-placeholder-color: inherit !default;
+1 -1
View File
@@ -19,7 +19,7 @@ $border-radius: $vs-border-radius;
appearance: none; appearance: none;
display: flex; display: flex;
padding: 0 0 4px 0; padding: 0 0 4px 0;
background: none; background: $vs-component-bg;
border: $border-width $border-style $border-color; border: $border-width $border-style $border-color;
border-radius: $border-radius; border-radius: $border-radius;
white-space: normal; white-space: normal;