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
This commit is contained in:
juanatsap
2025-11-07 20:54:36 +00:00
parent 6b17701a3f
commit 0e68e2f8d4
+2 -2
View File
@@ -1613,11 +1613,11 @@ a:focus {
color: #7d7d7d; color: #7d7d7d;
} }
/* Add blank space before and after specific section titles */ /* Add invisible separator (blank space) before specific sections */
#experience, #experience,
#awards, #awards,
#courses { #courses {
margin-top: 60px !important; padding-top: 60px !important;
} }
#experience .section-title, #experience .section-title,