From f2434cd3520cecd58a676362819eff8bc6ffb291 Mon Sep 17 00:00:00 2001 From: germondai Date: Fri, 26 Jun 2026 22:05:54 +0200 Subject: [PATCH] feat(web): add custom headers feature card, code tab, and 3-column grid layout --- apps/web/app/components/CodeExample.vue | 26 +++++++++++++++++++++++- apps/web/app/components/FeaturesGrid.vue | 9 ++++++-- 2 files changed, 32 insertions(+), 3 deletions(-) diff --git a/apps/web/app/components/CodeExample.vue b/apps/web/app/components/CodeExample.vue index ca6ea9e..88f13c9 100644 --- a/apps/web/app/components/CodeExample.vue +++ b/apps/web/app/components/CodeExample.vue @@ -1,5 +1,5 @@ @@ -98,7 +103,7 @@ const features = [ .features-grid { display: grid; - grid-template-columns: repeat(4, 1fr); + grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); } @@ -171,7 +176,7 @@ const features = [ color: var(--text-muted); } -@media (max-width: 1000px) { +@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); }