From 709a91c65288343786cd94ab27c71aaab9c03589 Mon Sep 17 00:00:00 2001 From: juanatsap Date: Wed, 19 Nov 2025 17:21:00 +0000 Subject: [PATCH] fix: Project responsibility icons - 60px + color unset MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Applied same fix to project icons (like Mobbeel security icon): - 60px × 60px size - color: unset !important for inline styles - Matches course icons styling exactly --- static/css/03-components/_projects.css | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/static/css/03-components/_projects.css b/static/css/03-components/_projects.css index 3abb703..6ddac43 100644 --- a/static/css/03-components/_projects.css +++ b/static/css/03-components/_projects.css @@ -227,6 +227,20 @@ footer { animation: fadeInGrow 0.3s ease-in-out; } +/* Project list icons in responsibilities - 60px with inline colors preserved */ +.project-item .responsibilities li iconify-icon.default-company-icon { + width: 60px !important; + height: 60px !important; + color: unset !important; /* Reset color to allow inline styles */ + display: flex !important; + align-items: center; + justify-content: center; + border-radius: 4px; + border: 1px solid var(--icon-border); + background: transparent !important; + padding: 8px; +} + /* Inline icons within project descriptions */ .project-desc iconify-icon, .project-technologies iconify-icon {