Skip to content

Commit

Permalink
add wallet full width button
Browse files Browse the repository at this point in the history
  • Loading branch information
lopezi committed May 29, 2024
1 parent c0f3f5e commit d20c2d5
Showing 1 changed file with 9 additions and 12 deletions.
21 changes: 9 additions & 12 deletions src/aoWebWallet/Pages/AddressBook.razor
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,15 @@
<PageTitle>Address Book - @Program.PageTitlePostFix</PageTitle>


<MudContainer Class="mt-16 px-8" MaxWidth="MaxWidth.False">
<MudContainer Class="mt-4 px-8" MaxWidth="MaxWidth.False">


<MudText Typo="Typo.h5">Address Book</MudText>

<MudContainer Width="100%" Class="d-flex justify-end mb-4 pr-3 d-max-w-100">
@if (BindingContext.WalletList.Data != null)
{
<MudTooltip Text="Add contact" Arrow="true" Placement="Placement.Left">
<MudIconButton Icon="@Icons.Material.Filled.AddCircle" aria-label="add contact" Size="Size.Large" OnClick="OpenDialog"></MudIconButton>
</MudTooltip>
}
<MudContainer style="width:100%; min-width: 100%; max-width: 100%;" Class="d-flex justify-end mb-4 pr-3">
@if (BindingContext.WalletList.Data != null)
{
<MudTooltip Text="Add contact" Arrow="true" Placement="Placement.Left">
<MudIconButton Icon="@Icons.Material.Filled.AddCircle" aria-label="add contact" Size="Size.Large" OnClick="OpenDialog"></MudIconButton>
</MudTooltip>
}
</MudContainer>

<MudStack>
Expand Down Expand Up @@ -123,5 +120,5 @@
StateHasChanged();
}


}

0 comments on commit d20c2d5

Please sign in to comment.