Magzine 样式微调

This commit is contained in:
tangly1024.com
2024-09-13 19:17:22 +08:00
parent c24d38eaef
commit e32ca96bdb
6 changed files with 79 additions and 74 deletions

View File

@@ -24,7 +24,7 @@ const PostSimpleListHorizontal = ({ title, href, posts }) => {
</Link>
</div>
{/* 列表 */}
<ul className='flex flex-col lg:flex-row'>
<ul className='grid grid-cols-1 lg:grid-cols-4'>
{posts?.map(p => {
return <PostItemCardSimple key={p.id} post={p} />
})}