From 46cef723b7f17de804c731450a03170cb259d51d Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Mon, 24 Mar 2025 13:03:11 -1000 Subject: [PATCH] style: Increase feature icon size and hover effect scale --- aider/website/assets/home.css | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/aider/website/assets/home.css b/aider/website/assets/home.css index 9629fa201..3cc40bd00 100644 --- a/aider/website/assets/home.css +++ b/aider/website/assets/home.css @@ -329,19 +329,19 @@ nav { } .feature-icon { - width: 40px; - height: 40px; - padding: 8px; - border-radius: 8px; + width: 48px; + height: 48px; + padding: 10px; + border-radius: 10px; background: rgba(18, 184, 134, 0.1); color: var(--secondary); - margin-right: 12px; + margin-right: 14px; flex-shrink: 0; transition: transform 0.3s, background 0.3s; } .feature-card:hover .feature-icon { - transform: scale(1.1); + transform: scale(1.15); background: rgba(18, 184, 134, 0.2); color: var(--secondary); }