Skip to content

Commit bf2d2cb

Browse files
committed
style: export --vs-height
1 parent 49dcbc3 commit bf2d2cb

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue3-select",
3-
"version": "0.0.5-beta.1",
3+
"version": "0.0.5-beta.2",
44
"description": "A maintained fork of vue-select for Vue 3",
55
"author": "Jeff Sagal <sagalbot@gmail.com>, Howard Chen <howard.tzw@gmail.com>",
66
"homepage": "https://vue-select.org",

src/css/global/variables.css

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
--vs-colors--dark: #333;
55
--vs-colors--darkest: rgba(0, 0, 0, 0.15);
66

7+
--vs-height: 36px;
8+
79
/* Search Input */
810
--vs-search-input-color: inherit;
911
--vs-search-input-placeholder-color: inherit;

src/css/modules/dropdown-toggle.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111
*/
1212

1313
.vs__dropdown-toggle {
14-
height: 40px;
14+
height: var(--vs-height);
1515
display: grid;
1616
grid-template-columns: 1fr auto;
17-
padding: 0 0 0px 0;
17+
padding: 0px;
1818
white-space: normal;
1919

2020
appearance: none;

0 commit comments

Comments
 (0)