Adding common styling for dropdown select.

fixes #293
This commit is contained in:
softsimon
2021-01-16 00:10:23 +07:00
parent 22d5c87404
commit c043b99574
2 changed files with 3 additions and 1 deletions

View File

@@ -134,7 +134,7 @@
</button>
<div [formGroup]="languageForm" class="text-small text-center mt-4">
<select formControlName="language" class="form-control form-control-secondary form-control-sm mx-auto" style="width: 130px;" (change)="changeLanguage()">
<select formControlName="language" class="custom-select custom-select-sm form-control-secondary form-control mx-auto" style="width: 130px;" (change)="changeLanguage()">
<option *ngFor="let lang of languages" [value]="lang.code">{{ lang.name }}</option>
</select>
</div>