Make basic footer refinement

TODO: responsiveness
This commit is contained in:
hunicus
2023-08-06 16:16:16 +09:00
parent 794a4ded9c
commit 2855fff702
5 changed files with 36 additions and 40 deletions

View File

@@ -1,5 +1,5 @@
<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: 200px;" (change)="changeLanguage()">
<select formControlName="language" class="custom-select custom-select-sm form-control-secondary form-control mx-auto" style="width: 100px;" (change)="changeLanguage()">
<option *ngFor="let lang of languages" [value]="lang.code">{{ lang.name }}</option>
</select>
</div>