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([])