Fixed spacing between provider dialogs fields

This commit is contained in:
Thorsten Sommer 2024-05-19 16:12:32 +02:00
parent ec2dbb923c
commit 5982559ceb
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108

View File

@ -9,6 +9,7 @@
T="string" T="string"
@bind-Text="@this.DataInstanceName" @bind-Text="@this.DataInstanceName"
Label="Instance Name" Label="Instance Name"
Class="mb-3"
Adornment="Adornment.Start" Adornment="Adornment.Start"
AdornmentIcon="@Icons.Material.Filled.Lightbulb" AdornmentIcon="@Icons.Material.Filled.Lightbulb"
AdornmentColor="Color.Info" AdornmentColor="Color.Info"
@ -16,7 +17,7 @@
/> />
@* ReSharper disable once CSharpWarnings::CS8974 *@ @* ReSharper disable once CSharpWarnings::CS8974 *@
<MudSelect @bind-Value="@this.DataProvider" Label="Provider" OpenIcon="@Icons.Material.Filled.AccountBalance" AdornmentColor="Color.Info" Adornment="Adornment.Start" Validation="@this.ValidatingProvider"> <MudSelect @bind-Value="@this.DataProvider" Label="Provider" Class="mb-3" OpenIcon="@Icons.Material.Filled.AccountBalance" AdornmentColor="Color.Info" Adornment="Adornment.Start" Validation="@this.ValidatingProvider">
@foreach (Providers provider in Enum.GetValues(typeof(Providers))) @foreach (Providers provider in Enum.GetValues(typeof(Providers)))
{ {
<MudSelectItem Value="@provider">@provider</MudSelectItem> <MudSelectItem Value="@provider">@provider</MudSelectItem>
@ -28,6 +29,7 @@
T="string" T="string"
@bind-Text="@this.dataAPIKey" @bind-Text="@this.dataAPIKey"
Label="API Key" Label="API Key"
Class="mb-3"
Adornment="Adornment.Start" Adornment="Adornment.Start"
AdornmentIcon="@Icons.Material.Filled.VpnKey" AdornmentIcon="@Icons.Material.Filled.VpnKey"
AdornmentColor="Color.Info" AdornmentColor="Color.Info"