We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1e1b36 commit adf8a05Copy full SHA for adf8a05
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: rem(200px) !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
@@ -67,6 +67,10 @@ $dropdown-theme: dropdown-theme.$indigo;
67
68
69
70
+[part='list'] {
71
+ min-height: calc(var(--size) * var(--item-count) + rem(16px)) !important;
72
+}
[part='filter-input'] {
padding: pad-inline(rem(12px));
0 commit comments