From fadfd0ba581af9dac37f34f73cbe0730423ce737 Mon Sep 17 00:00:00 2001 From: zenn Date: Tue, 31 Mar 2026 16:09:49 +0900 Subject: [PATCH] =?UTF-8?q?=EB=A6=B4=EB=A6=AC=EC=8A=A4:=20v1.2.68=20?= =?UTF-8?q?=EA=B8=B0=EB=B3=B8=20=ED=8B=B0=EC=96=B4=20=EC=A4=84=20=EC=88=98?= =?UTF-8?q?=EC=99=80=20=EC=85=B8=20=EC=95=84=EC=9D=B4=EC=BD=98=20=EB=B2=84?= =?UTF-8?q?=ED=8A=BC=20=EC=A0=95=EB=A6=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/update.md | 4 ++++ frontend/src/App.vue | 3 +++ frontend/src/views/MyTierListsView.vue | 3 ++- frontend/src/views/TierEditorView.vue | 1 - 4 files changed, 9 insertions(+), 2 deletions(-) diff --git a/docs/update.md b/docs/update.md index fef936f..6a8757c 100644 --- a/docs/update.md +++ b/docs/update.md @@ -1,5 +1,9 @@ # 업데이트 로그 +## 2026-03-31 v1.2.68 +- 내 티어표 카드 그리드는 각 카드가 화면 전체 너비를 과도하게 먹지 않도록 최대 폭을 제한해, 1~2개만 있을 때도 적당한 카드 크기를 유지하도록 조정함. +- 새 티어표 기본 그룹은 기존 S/A/B/C/D 5줄 대신 S/A/B/C 4줄로 시작하게 바꾸고, 좌우 사이드 토글 아이콘 버튼은 외곽선과 배경을 제거해 더 가볍게 정리함. + ## 2026-03-31 v1.2.67 - 홈 화면 게임 템플릿 즐겨찾기 버튼 위치 변경은 유지하면서, 즐겨찾기 on/off 시 카드가 즉시 튀지 않고 부드럽게 재정렬되도록 이동/페이드 전환을 추가함. - 별 아이콘을 눌렀을 때 카드가 즐겨찾기 우선순위 위치로 자연스럽게 이동해 전체 라이브러리 전환감이 덜 거칠게 보이도록 보정함. diff --git a/frontend/src/App.vue b/frontend/src/App.vue index ff1cb40..4476b3a 100644 --- a/frontend/src/App.vue +++ b/frontend/src/App.vue @@ -560,6 +560,9 @@ function submitGlobalSearch() { min-width: 32px; width: 32px; padding: 0; + border: 0; + background: transparent; + box-shadow: none; } .appUserCard { diff --git a/frontend/src/views/MyTierListsView.vue b/frontend/src/views/MyTierListsView.vue index b80fea1..e410c09 100644 --- a/frontend/src/views/MyTierListsView.vue +++ b/frontend/src/views/MyTierListsView.vue @@ -107,7 +107,8 @@ function openList(t) { } .list { display: grid; - grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); + grid-template-columns: repeat(auto-fit, minmax(260px, 320px)); + justify-content: start; gap: 18px; } .boardCard { diff --git a/frontend/src/views/TierEditorView.vue b/frontend/src/views/TierEditorView.vue index 4632aa1..496a3db 100644 --- a/frontend/src/views/TierEditorView.vue +++ b/frontend/src/views/TierEditorView.vue @@ -24,7 +24,6 @@ const groups = ref([ { id: 'gA', name: 'A', itemIds: [] }, { id: 'gB', name: 'B', itemIds: [] }, { id: 'gC', name: 'C', itemIds: [] }, - { id: 'gD', name: 'D', itemIds: [] }, ]) const pool = ref([])