From 207a2540101b2f216bde94ae53286d2e52f044e3 Mon Sep 17 00:00:00 2001 From: Wolfboy248 Date: Mon, 25 Nov 2024 09:20:01 +0100 Subject: frontend: begin port to css modules, sidebar refactor --- frontend/src/App.css | 25 +++++++++++++++++++++---- 1 file changed, 21 insertions(+), 4 deletions(-) (limited to 'frontend/src/App.css') diff --git a/frontend/src/App.css b/frontend/src/App.css index 14a9972..a6ef415 100644 --- a/frontend/src/App.css +++ b/frontend/src/App.css @@ -1,13 +1,11 @@ main { overflow: auto; overflow-x: hidden; - position: relative; - width: calc(100% - 380px); + width: calc(100% - 350px); height: 100vh; - left: 350px; - padding-right: 30px; + padding: 0px 30px; font-size: 40px; font-family: BarlowSemiCondensed-Regular; @@ -15,9 +13,28 @@ main { } +button img { + height: 24px; +} + +b { + font-family: BarlowCondensed-Bold; +} + +* { + --text-color: #cdcfdf; + --primary: #2B2E46; + --primary-dark: #202232; +} + +#root { + display: flex; +} + a { color: inherit; width: fit-content; + text-decoration: none; } body { -- cgit v1.2.3