feat(home): 모바일 반응형 — 스와이프 TODO + 풀다운 리프레시

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-23 14:46:51 +09:00
parent 0922261c74
commit 2c2011659a
2 changed files with 107 additions and 18 deletions

View File

@@ -803,15 +803,27 @@
.home-profile__name {
font-size: 16px;
}
.home-hero__stats {
grid-template-columns: 1fr;
}
.home-grid {
grid-template-columns: 1fr 1fr;
gap: 10px;
}
.home-card {
min-height: 80px;
}
.home-posts {
grid-template-columns: 1fr;
}
}
@media (max-width: 480px) {
.home-grid {
grid-template-columns: 1fr 1fr;
}
.home-hero__stats {
grid-template-columns: 1fr;
gap: 10px;
}
}