fix: LevelMeterFab icon tint via inline style, bypass Blazor CSS isolation scoping of :root

This commit is contained in:
daniel-c-harvey
2026-06-08 08:25:56 -04:00
parent b88af29731
commit 1c942ffb2b
3 changed files with 12 additions and 15 deletions
@@ -1,7 +1,8 @@
@namespace DeepDrftPublic.Client.Controls.AudioPlayerBar
<button class="lmf-fab-btn @_bandClass" type="button" @onclick="OnClick">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" class="lmf-icon" aria-hidden="true">
<button class="lmf-fab-btn" type="button" @onclick="OnClick">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" class="lmf-icon" aria-hidden="true"
style="@_svgStyle">
<path fill="currentColor" d="M12 3v10.55c-.59-.34-1.27-.55-2-.55-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4V7h4V3h-6z"/>
</svg>
</button>