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

Add some padding to the footer #387

Merged
merged 2 commits into from
Jul 19, 2022
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
4 changes: 2 additions & 2 deletions src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ small {

/* App Footer */
.app-footer {
padding: 0;
padding: 0 12px;
font-size: var(--fs-xs);
font-weight: var(--fw-light);
color: var(--color-neutral-50);
Expand Down Expand Up @@ -583,4 +583,4 @@ small {
.brand-tech-stack:hover .icon,
.brand-tech-stack:focus .icon {
fill: var(--color-brand-primary);
}
}
2 changes: 1 addition & 1 deletion src/common/footer/Footer.jsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Link } from "react-router-dom";

const Footer = () => { return (
<footer className='app-footer'>
<footer className='app-footer text-center'>
<hr className='separater' />
<div className='flex justify-center items-center py-2'>
<Link to='/tech-stacks'>
Expand Down