mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
12 lines
261 B
Plaintext
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>
|
|
}
|