Front End Audio Player Always Available

This commit is contained in:
daniel-c-harvey
2025-09-08 18:42:07 -04:00
parent a25d067dff
commit 73d4b0a9c5
15 changed files with 419 additions and 126 deletions
+12 -10
View File
@@ -1,12 +1,14 @@
<MudStack Row AlignItems="AlignItems.Center" Spacing="3" Class="mx-3">
@if (Icon != null)
{
<MudIcon Icon="@Icon" />
}
<NavLink href="@Href" Match="@(Match ?? NavLinkMatch.Prefix)">
@if (ChildContent != null)
<NavLink href="@Href" Match="@(Match ?? NavLinkMatch.Prefix)" class="nav-menu-item">
<div class="nav-item-content">
@if (Icon != null)
{
@ChildContent
<MudIcon Icon="@Icon" class="nav-item-icon" />
}
</NavLink>
</MudStack>
<span class="nav-item-text">
@if (ChildContent != null)
{
@ChildContent
}
</span>
</div>
</NavLink>