We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b067021 commit f36c7caCopy full SHA for f36c7ca
src/components/combo/themes/combo.base.scss
@@ -2,6 +2,8 @@
2
@use 'styles/utilities' as *;
3
4
:host {
5
+ --item-count: 6;
6
+
7
display: block;
8
font-family: var(--ig-font-family);
9
@@ -73,7 +75,7 @@
73
75
}
74
76
77
[part='list'] {
- min-height: calc(var(--size) * 6) !important;
78
+ min-height: calc(var(--size) * var(--item-count)) !important;
79
outline-style: none;
80
81
src/components/combo/themes/shared/combo.indigo.scss
@@ -62,7 +62,7 @@ $dropdown-theme: dropdown-theme.$indigo;
62
63
64
65
- min-height: calc(var(--size) * 6 + rem(16px)) !important;
+ min-height: calc(var(--size) * var(--item-count) + rem(16px)) !important;
66
67
68
[part='filter-input'] {
0 commit comments