Fix footer spacing — ~224px empty space before footer after refactoring #16
Reference in New Issue
Block a user
Delete Branch "%!s()"
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?
Bug Description
The footer has excessive empty space above it (~224px / 14rem), making the page look broken. This was caused by redundant Bootstrap spacing combined with custom CSS padding.
Root Cause Analysis
<footer>has Bootstrap classpy-5 mt-5which adds 3rem padding-top + 3rem padding-bottom + 3rem margin-top.footer { padding: 4rem 0 2rem; }adds another 4rem padding-topAcceptance Criteria
py-5 mt-5) from footer elementFiles Likely Affected
index.html— footer element class removalcss/style.css—.footerpadding/margin rules, light theme overridesHow to Verify