From ff4ab114c60e3b7b2f713d29d8bec12e48e4b366 Mon Sep 17 00:00:00 2001 From: Steven Sparks Date: Wed, 28 Feb 2024 12:55:39 -0500 Subject: [PATCH] Update header css --- .../src/app/components/header/header.css | 107 +++++----- .../src/app/components/header/header.tsx | 183 ++++++++---------- 2 files changed, 134 insertions(+), 156 deletions(-) diff --git a/apps/frontend/src/app/components/header/header.css b/apps/frontend/src/app/components/header/header.css index c8de311..cf4c535 100644 --- a/apps/frontend/src/app/components/header/header.css +++ b/apps/frontend/src/app/components/header/header.css @@ -9,7 +9,7 @@ left: 0; transition: 650ms; z-index: 999; - color: black; + color: black; } .HideSidebarNav { @@ -26,36 +26,32 @@ } .SidebarWrap { - width: 100%; + width: 100%; } .header-container { display: flex; justify-content: center; width: 100%; - justify-content: center; } - - -.trademark-image { +.trademark-image, +.trademark-letter { font-size: large; color: white; } - + .trademark-letter { - font-size: large; - color: white; margin-top: 0.25rem; padding-left: 1rem; padding-right: 1rem; } - + .vertical-line { position: relative; display: flex; } - + .vertical-line::before { content: ' '; position: absolute; @@ -65,18 +61,12 @@ width: 1px; background-color: rgb(255, 255, 255); } - + .head-trademark-lineList { margin-top: 0.40rem; width: 1.25rem; } - - - - - - .navLink-list { display: flex; justify-content: space-around; @@ -118,56 +108,55 @@ justify-content: center; gap: 1rem; height: 10rem; - } - +} .head-trademark-letter { font-size: 1.5rem; color: white; - padding: 0px; - margin: 0px; - bottom: 0px; + padding: 0; + margin: 0; + bottom: 0; +} - } - - .head-trademark-symbol { +.head-trademark-symbol { width: 1.55rem; height: 1.55rem; - padding: 0px; - margin: 0px; - - } - - .head-vertical-line { - position: relative; - display: flex; - - } - - .head-vertical-line::before { - content: ''; - position: absolute; - top: 0rem; - bottom: 0rem; - left: 0.02rem; - width: 1px; - background-color: rgb(255, 255, 255); - } - - .head-crystalball { + padding: 0; + margin: 0; +} + +.head-vertical-line { + position: relative; + display: flex; +} + +.head-vertical-line::before { + content: ''; + position: absolute; + top: 0.35rem; + bottom: 0.25rem; + left: 0.02rem; + width: 1px; + background-color: rgb(255, 255, 255); +} + +.head-crystalball { width: 1.95rem; height: 1.95rem; - padding: 0px; - margin: 0px; - + padding: 0; + margin: 0; padding-left: 0.5rem; - } +} - ul { - margin: 0; +.unordered-list { + justify-content: space-around; + width: 100%; + display: flex; + flex-direction: row; + margin-right: auto; padding: 0; - } - - ul.li { - margin-right: 0px; - } \ No newline at end of file +} + +ul li { + margin-right: 0; +} diff --git a/apps/frontend/src/app/components/header/header.tsx b/apps/frontend/src/app/components/header/header.tsx index 9bac577..6af10b3 100644 --- a/apps/frontend/src/app/components/header/header.tsx +++ b/apps/frontend/src/app/components/header/header.tsx @@ -81,116 +81,105 @@ export default function Header() { return classes.filter(Boolean).join(' '); } - return ( + return (
- ) + ); } \ No newline at end of file