Skip to content

Commit 68472c1

Browse files
committed
feat(combo): fix combo initial height
1 parent 3c465e0 commit 68472c1

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

src/components/combo/themes/combo.base.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
}
7474

7575
[part='list'] {
76-
min-height: rem(200px) !important;
76+
min-height: calc(var(--size) * 6) !important;
7777
outline-style: none;
7878
}
7979

src/components/combo/themes/shared/combo.indigo.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,10 @@ $dropdown-theme: dropdown-theme.$indigo;
6161
}
6262
}
6363

64+
[part='list'] {
65+
min-height: calc(var(--size) * 6 + rem(10px)) !important;
66+
}
67+
6468
[part='filter-input'] {
6569
padding: pad-inline(rem(12px));
6670
}

0 commit comments

Comments
 (0)