Skip to content

Commit

Permalink
Merge pull request #1088 from piyushbarve98/master
Browse files Browse the repository at this point in the history
1Application-frontend - Improvements to Navbar Layout and Styling
  • Loading branch information
PBJI authored Nov 15, 2023
2 parents 7ea8a00 + 159464c commit f5f8747
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 18 deletions.
7 changes: 4 additions & 3 deletions 1Application-frontend/src/components/Navbar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,11 @@ const Navbar = () => {
<nav>
<div className={`main-component ${menuOpen ? "menu-open show" : ""}`}>
<div className="head-main">
<h3 style={{ marginTop: "1rem" }}>
<h3 className="row" style={{ marginTop: "0.8rem" }}>
Thinks Well
<br />
<span>JAVASCRIPT PROJECTS</span>
</h3>
<h3 className="row">
JAVASCRIPT PROJECTS
</h3>
</div>
<div className="routes">
Expand Down
21 changes: 6 additions & 15 deletions 1Application-frontend/src/css/Navbar.css
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
width: 100%;
height: 6rem;
display: flex;
gap: 32rem;
justify-content: space-between;
z-index: 999;
background-color: var(--color-2);
backdrop-filter: blur(10px);
Expand All @@ -32,29 +32,20 @@

.head-main {
display: flex;
flex-direction: column;
margin-left: 2rem;
}

.head-main h3 {
position: relative;
top: -0.5rem;
margin-left: 6rem;
font-family: var(--font-1);
font-size: 2.5rem;
color: rgb(41, 6, 241);
font-weight: 700;
text-shadow: 1px 1px 1px #919191;
}

span {
margin-left: -0.9rem;
font-size: 2rem;
position: relative;
top: -1rem;
text-shadow: 1px 1px 1px #919191;
font-family: var(--font-1);
}

.routes ul {
display: flex;
gap: 3rem;
gap: 2rem;
margin-top: 2rem;
}

Expand Down

0 comments on commit f5f8747

Please sign in to comment.