From f90ef121025d95eeb433d1f463c5477ebbe41b82 Mon Sep 17 00:00:00 2001 From: AntoninoP Date: Sat, 21 Sep 2024 15:35:49 +0200 Subject: [PATCH] fix console and profile colors --- src/components/navbar/Navbar.module.scss | 6 +++--- .../DashboardPage/DashboardPage.module.scss | 4 ++-- .../ServerConsole/ServerConsole.module.scss | 19 ++++++++++--------- 3 files changed, 15 insertions(+), 14 deletions(-) diff --git a/src/components/navbar/Navbar.module.scss b/src/components/navbar/Navbar.module.scss index 8b7965a..dd41935 100644 --- a/src/components/navbar/Navbar.module.scss +++ b/src/components/navbar/Navbar.module.scss @@ -42,14 +42,14 @@ position: absolute; top: 4rem; right: 4rem; - background-color: #050816; + background-color: white; box-shadow: 0 0.167rem 0.833rem rgba(0, 0, 0, 0.15); border-radius: 0.8rem; overflow: hidden; z-index: 1001; width: 20rem; - border: .1rem solid #444444; font-size: 1.1rem; + } .menuItem, .menuItemLogout { @@ -64,7 +64,7 @@ } .menuItem:hover, .menuItemLogout:hover { - background-color: #1f202479; + background-color: #d4d6d892; color: var(--primary-color); } diff --git a/src/pages/DashboardPage/DashboardPage.module.scss b/src/pages/DashboardPage/DashboardPage.module.scss index 0b2fc5a..38b5dd6 100644 --- a/src/pages/DashboardPage/DashboardPage.module.scss +++ b/src/pages/DashboardPage/DashboardPage.module.scss @@ -80,8 +80,8 @@ html, body { } .AllserversTitle, .favoriteServerTitle, .iptitle { - font-size: 1.5rem; - font-weight: 500; + font-size: 1.25rem; + font-weight: 400; color: var(--text-color); margin: 1rem 0; } diff --git a/src/pages/ServerConsole/ServerConsole.module.scss b/src/pages/ServerConsole/ServerConsole.module.scss index 3e0808b..be5bece 100644 --- a/src/pages/ServerConsole/ServerConsole.module.scss +++ b/src/pages/ServerConsole/ServerConsole.module.scss @@ -12,7 +12,8 @@ justify-content: flex-start; align-items: flex-start; flex-direction: column; - background-color: #100D25; + background-color: rgb(223, 222, 222); + color: black; width: 100%; max-width: 50rem; height: 38rem; @@ -27,7 +28,7 @@ display: flex; justify-content: flex-start; align-items: center; - background-color: #1D1836; + background-color: white; width: 100%; height: 3rem; font-size: 1rem; @@ -46,8 +47,9 @@ .logs { font-family: 'Courier New', Courier, monospace; - font-size: 0.9rem; - color: #ffffff; + font-size: 1rem; + color: black; + font-weight: 500; white-space: pre-wrap; line-height: 1.5; margin: 0; @@ -57,7 +59,7 @@ display: flex; width: 100%; padding: 0.5rem; - background-color: #1D1836; + background-color: white; border-top: .1rem solid #343947; border-left: .1rem solid #343947; border-right: .1rem solid #343947; @@ -67,8 +69,7 @@ flex: 1; padding: 0.5rem; border: .1rem solid #343947; - background-color: #2C2A3E; - color: #ffffff; + background-color: white; font-size: 0.9rem; box-sizing: border-box; } @@ -76,8 +77,8 @@ .sendButton { margin-left: 0.5rem; padding: 0.5rem 1rem; - background-color: #3E3B59; - color: #ffffff; + background-color: #2f2f2f; + color: white; border: none; cursor: pointer; font-size: 0.9rem;