Skip to content

Commit

Permalink
fixed footer bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Rozen2007 committed Aug 27, 2021
1 parent e8630fe commit 0edbb9d
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions components/Footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,15 +62,14 @@ export default function Footer() {
<Globe className="globe" />
English
</span>
<span>
<DollarSign className="dollar" />
USD
<span className={"cursor-pointer"}>
<span className="mr-[-0.1rem] font-extrabold ">£ </span> GPB
</span>
<span>
<Facebook />
</span>
<span>
<Twitter />
<Twitter/>
<span >
</span>
<span>
<Instagram />
Expand All @@ -79,7 +78,7 @@ export default function Footer() {
<p>
&copy; 2021{" "}
<a href="https://rozen-portfolio.web.app/" target="_blank" rel="noreferrer">
Rozen Deed
Rozen Deedi
</a>
</p>
</span>
Expand Down Expand Up @@ -137,27 +136,30 @@ const FooterSection = styled.footer`
justify-content: space-between;
a {
margin-left: 0.5rem;
cursor: pointer;
}
a:hover {
text-decoration: underline;
cursor: pointer;
color: #e0565b;
}
svg {
height: 1rem;
cursor: pointer;
}
svg.globe {
cursor: pointer;
margin-right: 0.1rem;
}
svg.dollar {
margin-right: -0.1rem;
}
span + span {
margin-left: 1rem;
cursor: pointer;
}
p,
span {
display: flex;
align-items: center;
cursor: pointer;
}
}
}
Expand Down

0 comments on commit 0edbb9d

Please sign in to comment.