Skip to content

I added Nav icon Hover in navbar.css #98

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
28,226 changes: 15,183 additions & 13,043 deletions frontend/package-lock.json

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions frontend/package.json
Original file line number Diff line number Diff line change
@@ -11,13 +11,14 @@
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^12.8.3",
"bootstrap": "^5.0.0-alpha1",
"chokidar": "^2.1.8",
"chokidar": "^3.5.3",
"react": "^17.0.1",
"react-bootstrap": "^1.5.2",
"react-dom": "^17.0.1",
"react-icons": "^4.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"react-scripts": "^5.0.1",
"recharts": "^2.7.2",
"semantic-ui-css": "^2.4.1",
"start": "^5.1.0",
"styled-components": "^5.2.1",
1 change: 1 addition & 0 deletions frontend/src/Components/Navbar/Navbar.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import React from "react"
import NavComp from "./NavComp.js"
import Logo from "./GS_logo_black(1).png";

const Navbar = () => {

20 changes: 20 additions & 0 deletions frontend/src/Components/Navbar/navbar.css
Original file line number Diff line number Diff line change
@@ -21,9 +21,28 @@
.nav-link {
font-size: 1.2em;
margin: 0px 8px;
border-radius: 10%;
font-weight: bold;
}
@keyframes buttonAnimation {
0% {
transform: scale(1);
}
50% {
transform: scale(1.2);
}
100% {
transform: scale(1);
}
}

.nav-link:hover {
border-radius: 10%;
background-color: #e05d00;
color: white;
cursor: pointer;
animation: buttonAnimation 2s infinite;
}

.navbar-toggler {
background-color: #e05d00;
@@ -41,6 +60,7 @@
padding: 10px;
text-align: center;
}

.mob-show{
display: flex;
flex-direction: row;
16 changes: 8 additions & 8 deletions frontend/src/Pages/Homepage.js
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
import React from 'react';
import Mission from "../Components/Mission/Mission";
import Impact from "../Components/ourImpact/ourImpact"
import Community from "../Components/ourCommunity/ourCommunity"
import Impact from "../Components/OurImpact/OurImpact"
import Community from "../Components/OurCommunity/OurCommunity"
import Testimonial from "../Components/Testimonial/Testimonial"
import About from "../Components/Common/About"
import Newsletter from "../Components/Common/Newsletter"
import Join from "../Components/Common/Join"
import Navbar from "../Components/Navbar/Navbar"
import ScrollTop from "../Components/ScrollTop/ScrollTop";

import Upcomingeve from "../Components/Upcomingeve/Upcomingeve";



const HomePage = () => {
return (
<>
<Navbar/>

<About/>
< Navbar/>
<About />
<Mission />
<Impact />
<Community/>
<Community />
<Newsletter />
<Upcomingeve/>
<Upcomingeve />
<Testimonial />
<Join />
<ScrollTop />
11,896 changes: 0 additions & 11,896 deletions frontend/yarn.lock

Large diffs are not rendered by default.