Skip to content

Commit 11b2e19

Browse files
authored
Merge pull request #160 from RamakrushnaBiswal/main
Footer logo added
2 parents b7cf9f5 + 503b4ac commit 11b2e19

File tree

5 files changed

+105
-132
lines changed

5 files changed

+105
-132
lines changed

package-lock.json

Lines changed: 33 additions & 86 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
content="Web site created using create-react-app"
1111
/>
1212
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
13+
<link rel="stylesheet" type='text/css' href="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/devicon.min.css" />
1314
<!--
1415
manifest.json provides metadata used when your web app is installed on a
1516
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/

src/Components/Footer.css

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
}
3636

3737
.footer-links a:hover {
38-
color: #ff6347;
38+
color: #00ffff;
3939
}
4040

4141
.footer-content {
@@ -64,4 +64,20 @@
6464

6565
.back-to-top:hover {
6666
background-color: #443b78;
67-
}
67+
}
68+
a{
69+
text-decoration: none;
70+
}
71+
.icons{
72+
display: flex;
73+
justify-content: center;
74+
gap: 20px;
75+
font-size: 20px;
76+
}
77+
.icons a{
78+
color: #ffffff;
79+
transition: color 0.3s;
80+
}
81+
.icons a:hover{
82+
color: #00ffff;
83+
}

0 commit comments

Comments
 (0)