Skip to content

Commit

Permalink
Fix footer icons being covered by report a bug button (#645)
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=2db3d10f-d3b1-412c-8f69-0f3e3ff64197).
  • Loading branch information
Andreasgdp authored Sep 26, 2024
2 parents ed2b65b + 17b071e commit affaacd
Showing 1 changed file with 1 addition 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-12">
<Shell as="div">
<section
id="footer-content"
Expand Down

0 comments on commit affaacd

Please sign in to comment.