fix: standardize course icon size to 80px to match other sections
- Updated .course-icon wrapper to 80px × 80px (was 60px) - Updated .default-course-icon to 80px × 80px with 10px padding - Updated template iconify-icon to width="80" height="80" - Now matches Experience (80px) and Awards (80px) icon sizes - Consistent styling across all CV sections
This commit is contained in:
+5
-5
@@ -869,16 +869,16 @@ iconify-icon {
|
||||
|
||||
.course-icon {
|
||||
flex-shrink: 0;
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.default-course-icon {
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
@@ -886,7 +886,7 @@ iconify-icon {
|
||||
border: 1px solid #ddd;
|
||||
background: #f5f5f5;
|
||||
color: #999;
|
||||
padding: 8px;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.course-content {
|
||||
|
||||
@@ -202,7 +202,7 @@
|
||||
{{range .CV.Courses}}
|
||||
<div class="course-item">
|
||||
<div class="course-icon">
|
||||
<iconify-icon icon="mdi:school" width="60" height="60" class="default-course-icon"></iconify-icon>
|
||||
<iconify-icon icon="mdi:school" width="80" height="80" class="default-course-icon"></iconify-icon>
|
||||
</div>
|
||||
<div class="course-content">
|
||||
<div class="course-header">
|
||||
|
||||
Reference in New Issue
Block a user