Theme elector width fix

This commit is contained in:
softsimon 2024-04-09 14:51:54 +09:00
parent d5b0adeeed
commit 347b74a55d
No known key found for this signature in database
GPG Key ID: 488D7DCFB5A430D7
2 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,5 @@
<div [formGroup]="themeForm" class="text-small text-center">
<select formControlName="theme" class="custom-select custom-select-sm form-control-secondary form-control mx-auto" style="width: 150px;" (change)="changeTheme()">
<select formControlName="theme" class="custom-select custom-select-sm form-control-secondary form-control mx-auto" (change)="changeTheme()">
<option value="default" i18n="theme.mempool-theme">Classic</option>
<option value="contrast" i18n="theme.high-contrast">BlueMatt</option>
</select>

View File

@ -0,0 +1,3 @@
.custom-select {
width: 100px;
}