We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d3d0353 commit 82130faCopy full SHA for 82130fa
ui/src/components/overlay.svelte
@@ -60,9 +60,7 @@
60
{#if $RADIODATA.onRadio}
61
<div class="w-[15vw] absolute z-[1000] text-right select-none" style="top: {$RADIODATA.userData.playerlist.coords.y}px; right: {$RADIODATA.userData.playerlist.coords.x}px;cursor:{$SHOW? 'move':'no-drop'}" use:dragMe>
62
{#each Object.entries($PLAYERLIST) as [id, player], index (id)}
63
- {#if player.isTalking || $SHOWFORCEPLAYERLIST}
64
- <div class="text-[1.7vh] font-bold px-2 text-white">{player.name}</div>
65
- {/if}
+ <div class="text-[1.7vh] font-bold px-2" style="color: {player.isTalking? "white":"rgb(1, 176, 240)"}">{player.name}</div>
66
{/each}
67
</div>
68
{/if}
0 commit comments