Remotely/Server/Components/LoadingSignal.razor
2021-07-29 07:57:32 -07:00

12 lines
261 B
Plaintext

@inject IClientAppState AppState
@if (AppState.EffectiveTheme == Theme.Dark)
{
<div class="signal" style="border-color: whitesmoke"></div>
}
else if (AppState.EffectiveTheme == Theme.Light)
{
<div class="signal" style="border-color: #333"></div>
}