diff --git a/docs/update.md b/docs/update.md index 8197aa2..8eb67cd 100644 --- a/docs/update.md +++ b/docs/update.md @@ -1,5 +1,8 @@ # 업데이트 로그 +## 2026-04-01 v1.3.20 +- 내 티어표 카드 그리드는 카드 최대폭 우선 규칙 대신 더 촘촘한 auto-fill 기준으로 조정해, 넓은 화면에서도 한 줄에 더 많은 카드가 자연스럽게 배치되도록 보정함. + ## 2026-04-01 v1.3.19 - 관리자 Image Optimization 기간 선택은 연도/월을 가로로 나란히 두고, 연도를 고르기 전에는 월 셀렉트를 숨겨 비어 있는 박스처럼 보이던 상태를 없앰. - 전체 초기화 버튼도 실제 월이 선택된 경우에만 보이도록 정리해, 사이드바 상단 필터 줄이 더 단정하게 보이도록 보정함. diff --git a/frontend/src/views/MyTierListsView.vue b/frontend/src/views/MyTierListsView.vue index e410c09..5b2f75d 100644 --- a/frontend/src/views/MyTierListsView.vue +++ b/frontend/src/views/MyTierListsView.vue @@ -107,12 +107,13 @@ function openList(t) { } .list { display: grid; - grid-template-columns: repeat(auto-fit, minmax(260px, 320px)); - justify-content: start; + grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 18px; + } .boardCard { display: grid; + width: 100%; min-width: 0; border-radius: 22px; border: 1px solid rgba(255, 255, 255, 0.16);