From efa71b29cade9c374f32a1c22625f5d1c488132c Mon Sep 17 00:00:00 2001 From: otivm Date: Mon, 27 Apr 2026 10:51:53 +0000 Subject: [PATCH] Add btn-new-game style to token bar --- src/App.css | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/src/App.css b/src/App.css index 7ec7ec9..214fb77 100644 --- a/src/App.css +++ b/src/App.css @@ -324,6 +324,10 @@ font-size: 0.68rem; color: #6b5a3e; text-align: center; + display: flex; + align-items: center; + justify-content: center; + gap: 1rem; } .token-code { @@ -401,3 +405,19 @@ align-items: flex-start; justify-content: center; } + +/* New game button — inline in token bar */ +.btn-new-game { + background: none; + border: none; + color: #9a8a6e; + font-size: 0.68rem; + cursor: pointer; + padding: 0; + text-decoration: underline; + text-underline-offset: 2px; +} + +.btn-new-game:hover { + color: #6b5a3e; +}