45 lines
1.5 KiB
Plaintext
45 lines
1.5 KiB
Plaintext
@using BlazorAnimation
|
|
@using TIAMSharedUI.Shared.Components.Cards
|
|
@using TIAMWebApp.Shared.Application.Interfaces
|
|
@inject IServiceProviderDataService ServiceProviderDataService
|
|
|
|
<div class=" col-12 col-xl-3">
|
|
<Animation Effect="@Effect.FadeInUp" Speed="@Speed.Fast" Delay="@TimeSpan.FromMilliseconds(250)">
|
|
<div class="card glass card-admin" style="border-radius: 16px;">
|
|
<div class="card-header py-2 px-4">
|
|
<div class="d-flex justify-content-between align-items-center">
|
|
<div>
|
|
<span class="fw-bold text-body">Transfers</span>
|
|
|
|
</div>
|
|
<div>
|
|
<!--h6 class="mb-0"> <a href="#">All settings</a> </h6-->
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="card-body card-admin-body py-2 px-4">
|
|
|
|
</div>
|
|
<div class="card-footer py-2 px-4">
|
|
<div class="d-flex justify-content-between">
|
|
|
|
<a href="#!">Modify</a>
|
|
<div class="border-start h-100"></div>
|
|
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</Animation>
|
|
</div>
|
|
|
|
@code {
|
|
[Parameter] public Guid ContextID { get; set; }
|
|
|
|
protected override async Task OnInitializedAsync()
|
|
{
|
|
|
|
await base.OnInitializedAsync();
|
|
}
|
|
}
|