Skip to content
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

Refactor footer #1561 #1572

Merged
merged 8 commits into from
Jul 10, 2024
Prev Previous commit
Next Next commit
fix font weight and border width
  • Loading branch information
JabaDUDE committed Jun 13, 2024
commit f90bf960f4d09a0854abdd94d25325d38706f940
5 changes: 2 additions & 3 deletions components/Footer/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,14 @@ const TextHeader = styled.h6`
`
const BrowseHeader = styled(NavLink)`
font-size: 1rem;
font-weight: bold;
color: #fff;
font-family: Nunito;
padding: 0.5rem 1rem 0 0;
margin: 0 0 10px 0;

@media (max-width: 768px) {
padding-bottom: 0.5rem;
border-bottom: solid 1px rgba(255, 255, 255, 0.75);
padding-bottom: 0.6rem;
border-bottom: solid 1.5px rgba(255, 255, 255, 0.75);
margin: 0;
}
`
Expand Down