90768: Fixed dropdown position bug

This commit is contained in:
Alexandre Vryghem
2022-04-11 09:41:55 +02:00
parent 45887154b6
commit 61650df492
2 changed files with 1 additions and 5 deletions

View File

@@ -4,7 +4,7 @@
(keydown.arrowup)="shiftFocusUp($event)" (keydown.esc)="close()" (keydown.arrowup)="shiftFocusUp($event)" (keydown.esc)="close()"
(dsClickOutside)="close();"> (dsClickOutside)="close();">
<div class="form-group mb-0"> <div class="form-group mb-0">
<label *ngIf="label; else searchInput"> <label *ngIf="label; else searchInput" class="mb-0">
<span class="font-weight-bold"> <span class="font-weight-bold">
{{label}} {{label}}
</span> </span>

View File

@@ -13,8 +13,4 @@
form { form {
position: relative; position: relative;
.dropdown-menu {
position: absolute;
top: 40px;
}
} }