From c72f60c0e4c80ec590499635c5b936ccbeece090 Mon Sep 17 00:00:00 2001 From: juanatsap Date: Wed, 12 Nov 2025 12:50:08 +0000 Subject: [PATCH] fix: remove negative footer margin that was hiding content The margin-top: -60px on .cv-footer was pulling the footer up too much, hiding the GitHub link and other footer content. Removed the negative margin - the reduced .cv-main bottom padding (1rem instead of 3rem) already provides better spacing without hiding content. Result: - Footer content (GitHub, LinkedIn links) now visible - Still has better spacing than before - Zoom control at 100px bottom clears footer properly --- static/css/main.css | 1 - 1 file changed, 1 deletion(-) diff --git a/static/css/main.css b/static/css/main.css index 28cdec3..28f1e71 100644 --- a/static/css/main.css +++ b/static/css/main.css @@ -1696,7 +1696,6 @@ a:focus { color: #ccc; padding: 20px 0; margin: 0; - margin-top: -60px; /* Move footer up to reduce space and clear zoom control */ grid-column: 1 / -1; /* Span all columns */ }