Refactor admin dashboard and standardize UI shells
TaxBaik CI/CD / build-and-deploy (push) Successful in 2m46s

This commit is contained in:
2026-07-07 23:16:31 +09:00
parent fc655e20c1
commit 08347a4e20
35 changed files with 625 additions and 230 deletions
@@ -0,0 +1,21 @@
<MudPaper Class="admin-surface admin-search-bar" Elevation="0">
<MudStack Row="true" AlignItems="AlignItems.Center" Spacing="2" Class="admin-search-bar-inner">
<div class="admin-search-field">
@SearchContent
</div>
@if (Actions is not null)
{
<div class="admin-search-actions">
@Actions
</div>
}
</MudStack>
</MudPaper>
@code {
[Parameter]
public RenderFragment? SearchContent { get; set; }
[Parameter]
public RenderFragment? Actions { get; set; }
}