Skip to content

Commit

Permalink
ugly fix dropdown background
Browse files Browse the repository at this point in the history
  • Loading branch information
andreromao committed Apr 14, 2024
1 parent bf841ce commit 923b039
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/app/user/promote/promote.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,10 @@ <h5 *ngIf="info && info.length > 0 && info !== 'team'" class='name center'>

<div *ngIf="userRead.role !== 'company'" class="row">
<div class="col-sm-6 promote typeahead">
<mat-form-field appearance="fill" style="width: 100%;">
<mat-form-field appearance="fill" style="width: 100%; background-color: white;">
<mat-label>Search for company</mat-label>
<mat-select name="searchCompany" id="searchCompany" name="searchCompany" [(ngModel)]="searchedCompany">
<mat-option *ngFor="let comp of companies" [value]="comp">
<mat-select name="searchCompany" id="searchCompany" style="background-color: white;" name="searchCompany" [(ngModel)]="searchedCompany">
<mat-option style="background-color: white;" *ngFor="let comp of companies" [value]="comp">
{{ comp.name }}
</mat-option>
</mat-select>
Expand Down

0 comments on commit 923b039

Please sign in to comment.