Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 1 addition & 10 deletions src/components/NavBar/AnimatedNavBar/AnimatedNavbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,7 @@ const getComponentTitle = component => {
)
}

const AnimatedNavbar = ({
landingComponents,
navbarItems = [],
duration,
}) => {
const AnimatedNavbar = ({ landingComponents, navbarItems = [], duration }) => {
const navbarConfig = [
...navbarItems.map(navItem => {
if (navItem.landing) {
Expand Down Expand Up @@ -56,11 +52,6 @@ const AnimatedNavbar = ({
}
}
}),
{
title: "Join Us",
slug: "jobs",
dropdown: () => <Dropdown sections={null} />,
},
{
title: "Blog",
slug: "blog",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
&-section {
padding: 28px;
position: relative;
z-index: 10;
}
&-link {
font-size: 18px;
Expand Down
5 changes: 4 additions & 1 deletion src/components/NavBar/NavBar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

.NavBar {
background-color: white;
z-index: 10;
}
.NavBar__Logo {
margin: 16px 28px;
Expand Down Expand Up @@ -49,6 +50,7 @@
align-items: center;
justify-content: space-around;
&-contact {
white-space: nowrap;
box-shadow: 0px 2px 10px #3f6be880;
padding: .6em;
background-color: #3F6BE8;
Expand All @@ -71,7 +73,7 @@
display: flex;
flex-direction: row;
& > a {
flex-basis: 30%;
flex-basis: 20%;
}
}
.NavBar__Logo {
Expand All @@ -89,6 +91,7 @@
.NavBar__Item {
margin-right: 2.5rem;
margin-top: .5em;
white-space: nowrap;
}
.NavBar_Side{
justify-content: unset;
Expand Down