Change only the selector width

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

View File

@ -1,4 +1,4 @@
<div [formGroup]="languageForm" class="text-small text-center" width="500px">
<div [formGroup]="languageForm" class="text-small text-center">
<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>
</select>