From cd3c054ee8cb3d46639fa520c8f22133f92291e4 Mon Sep 17 00:00:00 2001 From: Vinzenz Schroeter Date: Sun, 14 Apr 2024 12:57:45 +0200 Subject: [PATCH] css variables --- tank-frontend/src/App.css | 2 +- tank-frontend/src/App.tsx | 9 ++- tank-frontend/src/Controls.css | 69 ++++++---------------- tank-frontend/src/Controls.tsx | 17 +++--- tank-frontend/src/JoinForm.css | 10 ++-- tank-frontend/src/PlayerInfo.css | 5 -- tank-frontend/src/PlayerInfo.tsx | 3 +- tank-frontend/src/Scoreboard.tsx | 15 +++-- tank-frontend/src/components/Button.css | 13 ++-- tank-frontend/src/components/Column.css | 4 +- tank-frontend/src/components/Column.tsx | 2 +- tank-frontend/src/components/DataTable.css | 2 +- tank-frontend/src/components/DataTable.tsx | 19 +++--- tank-frontend/src/components/Row.css | 4 +- tank-frontend/src/components/Row.tsx | 2 +- tank-frontend/src/components/TextInput.css | 2 +- tank-frontend/src/index.css | 29 ++++++++- 17 files changed, 96 insertions(+), 111 deletions(-) delete mode 100644 tank-frontend/src/PlayerInfo.css diff --git a/tank-frontend/src/App.css b/tank-frontend/src/App.css index 8845dee..06597b9 100644 --- a/tank-frontend/src/App.css +++ b/tank-frontend/src/App.css @@ -1,4 +1,4 @@ .GadgetRows { justify-content: space-evenly; - margin-top: 24px; + margin-top: calc(4 * var(--padding-normal)); } diff --git a/tank-frontend/src/App.tsx b/tank-frontend/src/App.tsx index 312d5c6..1759ffd 100644 --- a/tank-frontend/src/App.tsx +++ b/tank-frontend/src/App.tsx @@ -29,11 +29,14 @@ export default function App() { setLoggedIn(result !== null); }, [nameId, isLoggedIn])(); - return + return -

Tanks!

+

CCCB-Tanks!

+