fix: align award items with other sections and fix separator styling

- Remove margin-left from award-item to align with experience/courses/projects
- Change border from 2px solid #ddd to 1px solid rgba(0,0,0,0.1) for consistency
- Awards section now matches the layout and spacing of other sections
This commit is contained in:
juanatsap
2025-11-09 02:49:40 +00:00
parent 3b5256b1ad
commit e0712bb78c
+1 -3
View File
@@ -1507,8 +1507,6 @@ a:focus {
SECTION STYLES FOR PAGE 2 SECTION STYLES FOR PAGE 2
=============================================== */ =============================================== */
.award-item,
.course-item,
.language-item, .language-item,
.reference-item, .reference-item,
.other-content { .other-content {
@@ -1525,7 +1523,7 @@ a:focus {
align-items: flex-start; align-items: flex-start;
margin-bottom: 2.5rem; margin-bottom: 2.5rem;
padding-bottom: 2rem; padding-bottom: 2rem;
border-bottom: 2px solid #ddd; border-bottom: 1px solid rgba(0, 0, 0, 0.1);
page-break-inside: avoid; page-break-inside: avoid;
transition: gap 0.3s ease-in-out; transition: gap 0.3s ease-in-out;
} }