From 240316a063c5c78265d3bfa239a5226c7bff4bd2 Mon Sep 17 00:00:00 2001 From: "Torsten Schulz (local)" Date: Fri, 5 Dec 2025 11:38:14 +0100 Subject: [PATCH] Add styles for menu button in CSS to enhance visual appearance. Set text color to white, background to transparent, and remove border for a cleaner look. --- client/src/style.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/client/src/style.css b/client/src/style.css index eac3cc3..cbaac69 100644 --- a/client/src/style.css +++ b/client/src/style.css @@ -76,6 +76,12 @@ html, body, #app { margin: 0.1em 0.2em; } +.menu button span { + color: #fff; + background-color: transparent; + border: none; +} + .horizontal-box { display: flex; flex: 1;