Increase top padding/spacing in the footer #134
Labels
No Label
P0 Critical
P1 High
P2 Medium
P3 Low
accessibility
backend
bug
content
data-integrity
enhancement
frontend
infra
integration
owner
owner-input
performance
performance
phase-7
phase-8
security
seo
ui
ux
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: null/Queue-North-Website#134
Loading…
Reference in New Issue
No description provided.
Delete Branch "%!s(<nil>)"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
UI Issue
The footer needs more vertical spacing at the top before the content text begins. Currently
py-12(3rem) is used on the inner container, but the top feels cramped — the logo, company name, and tagline start too close to the section boundary.Location
src/components/layout/Footer.jsx— the outer<div>:py-12applies equal top/bottom padding (3rem). The top needs more breathing room.Suggested Fix
Switch from uniform
py-12to asymmetric padding — e.g.pt-16 pb-12(4rem top, 3rem bottom) orpt-20 pb-12(5rem top, 3rem bottom) — to give the footer content more space from the page content above it.Alternatively, add
mt-8ormt-12to the<footer>element itself to push it down from the preceding content.