From 35666e17052fb5dc763329f9081bd6d6578058d8 Mon Sep 17 00:00:00 2001 From: Ilia Denisov Date: Sun, 7 Jun 2026 12:10:52 +0200 Subject: [PATCH] Stage 17 round 6 fixes: pin the nudge button right; schematic USSR flag emblem MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Chat: always render the (possibly empty) flex:1 caption before the nudge button, so the nudge stays pinned right whether or not the cooldown text shows (it drifted left when available). - USSR flag: redraw the hammer & sickle as a thin schematic sketch — an elongated semicircle sickle with a handle, crossed by a T-shaped hammer (per the original's structure), instead of the bold over-filled emblem; the star is a touch smaller. --- ui/public/flag-ussr.svg | 17 ++++++++++------- ui/src/game/Chat.svelte | 3 ++- 2 files changed, 12 insertions(+), 8 deletions(-) diff --git a/ui/public/flag-ussr.svg b/ui/public/flag-ussr.svg index 90b07b7..0bdc2ea 100644 --- a/ui/public/flag-ussr.svg +++ b/ui/public/flag-ussr.svg @@ -1,11 +1,14 @@ - - - - - - - + + + + + + + + + + diff --git a/ui/src/game/Chat.svelte b/ui/src/game/Chat.svelte index fb1ddb9..039d22d 100644 --- a/ui/src/game/Chat.svelte +++ b/ui/src/game/Chat.svelte @@ -57,7 +57,8 @@ /> {:else} - {#if nudgeOnCooldown}{t('chat.awaitingReply')}{/if} + + {nudgeOnCooldown ? t('chat.awaitingReply') : ''} {/if}