redesigned input elements

This commit is contained in:
t.ruspekhofer 2022-03-19 21:51:15 +01:00
parent 2aa6978137
commit cb683723b7
7 changed files with 84 additions and 13 deletions

View file

@ -21,7 +21,7 @@
@if (isUser && _usableAccounts.Count > 1 && signUp.SignUpType != SignUpType.Flex)
{
<td>
<select value=@signUp.GuildWars2AccountId @onchange="args => _Parent.ChangeAccount(args)">
<select class="accountselect" value=@signUp.GuildWars2AccountId @onchange="args => _Parent.ChangeAccount(args)">
@foreach (var account in _usableAccounts)
{
<option value=@account.GuildWars2AccountId>@account.AccountName</option>