feature: Palette Enhancements

This commit is contained in:
daniel-c-harvey
2026-06-06 21:24:19 -04:00
parent 47d0475d3f
commit 84a302ce24
5 changed files with 13 additions and 7 deletions
@@ -1,4 +1,5 @@
@page "/track/{EntryKey}"
@using DeepDrftPublic.Client.Controls
<PageTitle>@(ViewModel.Track?.TrackName ?? "Track") - DeepDrft</PageTitle>
@@ -57,10 +58,7 @@ else if (ViewModel.Track is not null)
</div>
<div>
<MudIconButton Icon="@(isThisTrackPlaying ? Icons.Material.Filled.Pause : Icons.Material.Filled.PlayArrow)"
Color="Color.Tertiary"
Size="Size.Large"
OnClick="PlayTrack" />
<PlayStateIcon Size="Size.Large" Color="Color.Secondary" OnToggle="@PlayTrack"/>
</div>
</MudStack>