From 74c8374a7c0ae7170262128b8c4bcb749c691e6d Mon Sep 17 00:00:00 2001 From: juanatsap Date: Fri, 7 Nov 2025 21:34:56 +0000 Subject: [PATCH] feat: match course icons styling with awards section - Added border, background, and rounded corners to course icons - Icons now have consistent styling across experience, awards, and courses sections --- static/css/main.css | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/static/css/main.css b/static/css/main.css index 8e7e383..5393325 100644 --- a/static/css/main.css +++ b/static/css/main.css @@ -657,7 +657,7 @@ iconify-icon { /* Sections */ .cv-section { - margin-bottom: 2rem; + margin-bottom: 3rem; page-break-inside: avoid; } @@ -838,6 +838,14 @@ iconify-icon { } .default-course-icon { + width: 60px; + height: 60px; + display: flex; + align-items: center; + justify-content: center; + border-radius: 4px; + border: 1px solid #ddd; + background: #f5f5f5; color: #999; }