From 0e68e2f8d4ec2a3c261d1967f1f4d02efc369ac1 Mon Sep 17 00:00:00 2001 From: juanatsap Date: Fri, 7 Nov 2025 20:54:36 +0000 Subject: [PATCH] fix: use padding-top instead of margin-top for invisible separator - Changed from margin-top to padding-top: 60px - Padding creates internal space within the section element - This ensures the blank space is visible and not collapsed - Creates invisible separator effect before Experience, Awards, Courses --- static/css/main.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/static/css/main.css b/static/css/main.css index a09ca95..292e625 100644 --- a/static/css/main.css +++ b/static/css/main.css @@ -1613,11 +1613,11 @@ a:focus { color: #7d7d7d; } -/* Add blank space before and after specific section titles */ +/* Add invisible separator (blank space) before specific sections */ #experience, #awards, #courses { - margin-top: 60px !important; + padding-top: 60px !important; } #experience .section-title,