We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6ff43dd + 9a08eb6 commit a395ff2Copy full SHA for a395ff2
2 files changed
src/app/data-entries/autocomplete/movie/movie.component.html
@@ -6,7 +6,7 @@
6
[(ngModel)]="cinemaSelected"
7
/>
8
</igx-input-group>
9
- <igx-drop-down #townsPanel maxHeight="300px">
+ <igx-drop-down #townsPanel maxHeight="200px">
10
@for (town of towns; track town) {
11
<igx-drop-down-item-group [label]="town.name">
12
@for (cinema of town.cinemas | startsWith:cinemaSelected; track cinema) {
src/app/data-entries/autocomplete/movie/movie.component.scss
@@ -1,3 +1,9 @@
1
.autocomplete {
2
width: 50%;
3
}
4
+
5
+:host {
+ height: 100%;
+ display: flex;
+ align-items: center;
+}
0 commit comments