style: Update feature cards with blue underline instead of shaded header

This commit is contained in:
Paul Gauthier (aider) 2025-03-19 14:09:21 -07:00
parent 5f71cdc497
commit 1f630a03b9

View file

@ -254,10 +254,7 @@ nav {
display: flex; display: flex;
align-items: center; align-items: center;
margin-bottom: 20px; margin-bottom: 20px;
padding: 12px 15px; padding: 0 0 12px 0;
background-color: rgba(76, 110, 245, 0.1);
border-radius: 6px;
border-bottom: 1px solid rgba(76, 110, 245, 0.2);
} }
.feature-icon { .feature-icon {
@ -275,6 +272,18 @@ nav {
font-size: 1.3rem; font-size: 1.3rem;
color: var(--dark); color: var(--dark);
margin: 0; margin: 0;
position: relative;
padding-bottom: 12px;
}
.feature-title::after {
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 60px;
height: 3px;
background-color: var(--primary);
} }
.models { .models {