feat: change selected blogs to switch to card form on small screens

This commit is contained in:
2026-02-18 14:54:07 -06:00
parent e52d85f931
commit 44bd1e4810
5 changed files with 15 additions and 15 deletions

View File

@@ -11,7 +11,7 @@ interface Props {
const { posts } = Astro.props;
---
<section class="smooth-reveal">
<section class="smooth-reveal flex flex-col gap-4">
{posts.map((post, index) => index % 2 === 0 ? (
<LargeBlogLeftCard
title={post.title}