fix:优化卡片布局,增加空间利用率

This commit is contained in:
jiangrui
2025-03-12 15:50:11 +08:00
parent bf2d7c70c7
commit 5f53d30be1

View File

@@ -316,7 +316,7 @@ const handleLoadMore = (channelId: string) => {
// 卡片网格
.card-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
gap: 24px;
grid-auto-rows: min-content;
}