Skip to content

Commit

Permalink
Merge pull request #121 from Dev-sAHSRAH/bug-fix-119
Browse files Browse the repository at this point in the history
Fixed navbar appearance
  • Loading branch information
pradeeptosarkar authored Oct 2, 2023
2 parents ed8c442 + eae3dbc commit 73637cf
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/components/Navbar/Navbar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import React, { useState } from "react";
import { Link } from "react-router-dom";

const NavbarContainer = styled.nav`
width: 95%;
width: 100%;
height: fit-content;
background-color: #010116;
display: flex;
Expand All @@ -22,16 +22,15 @@ const LeftContainer = styled.div`
flex: 70%;
display: flex;
align-items: center;
justify-content: flex-start;
justify-content: space-between;
padding-right: 50px;
`;

const RightContainer = styled.div`
flex: 30%;
display: flex;
justify-content: flex-end;
align-items: center;
padding-left: 5%;
padding-right: 2%;
`;

const NavbarInnerContainer = styled.div`
Expand Down

0 comments on commit 73637cf

Please sign in to comment.