Increase the language selector width to accomodate all languages

This commit is contained in:
Felipe Knorr Kuhn 2024-04-21 18:48:44 -07:00
parent bd5a23ff0d
commit bd2c15c6bb
No known key found for this signature in database
GPG Key ID: 79619B52BB097C1A

View File

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