From 50a158bb44b2ccce5fbfb2afd4f213378e309621 Mon Sep 17 00:00:00 2001 From: juanatsap Date: Fri, 7 Nov 2025 20:20:11 +0000 Subject: [PATCH] fix: move top separator to section container instead of title - Changed selector from #experience .section-title to #experience - Changed selector from #awards .section-title to #awards - Changed selector from #courses .section-title to #courses - Separator now appears directly above the section icon and title - Matches the position shown in the green arrow (not red arrow) --- static/css/main.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/static/css/main.css b/static/css/main.css index 0982f1f..1863775 100644 --- a/static/css/main.css +++ b/static/css/main.css @@ -1614,9 +1614,9 @@ a:focus { } /* Add top border separator to specific sections */ -#experience .section-title, -#awards .section-title, -#courses .section-title { +#experience, +#awards, +#courses { border-top: 1px solid rgba(0, 0, 0, 0.1); padding-top: 20px; }