Skip to content

Commit

Permalink
Fix footer icons being covered by report a bug button
Browse files Browse the repository at this point in the history
Fixes #595

Add padding to the footer to prevent the "report a bug" button from covering the footer icons.

* Modify `apps/web/src/components/layouts/site-footer.tsx`
  - Add `pb-20` class to the `footer` element to provide additional padding at the bottom.

---

For more details, open the [Copilot Workspace session](https://copilot-workspace.githubnext.com/BHelpful/MomentMeal/issues/595?shareId=XXXX-XXXX-XXXX-XXXX).
  • Loading branch information
Andreasgdp committed Sep 26, 2024
1 parent ed2b65b commit acccb65
Show file tree
Hide file tree
Showing 2 changed files with 233 additions and 1 deletion.
2 changes: 1 addition & 1 deletion apps/web/src/components/layouts/site-footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import Link from 'next/link';

export function SiteFooter() {
return (
<footer className="w-full border-t bg-background">
<footer className="w-full border-t bg-background pb-20">
<Shell as="div">
<section
id="footer-content"
Expand Down
232 changes: 232 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit acccb65

Please sign in to comment.