릴리스: v1.2.23 셸 하단 액션과 홈 카드 정리

This commit is contained in:
2026-03-30 18:34:37 +09:00
parent 876c13d99b
commit ed68b609bc
8 changed files with 46 additions and 47 deletions

View File

@@ -81,9 +81,6 @@ function submitSearch() {
<h2 class="dashboardHero__title">{{ gameName || gameId }}</h2>
<p class="dashboardHero__desc"> 게임의 공개 티어표를 탐색하고, 바로 보드를 만들어 같은 흐름으로 이어갈 있어요.</p>
</div>
<div class="dashboardHero__right">
<button class="primary" @click="createNew">{{ auth.user ? '새로운 티어표 만들기' : '로그인 티어표 만들기' }}</button>
</div>
</section>
<div v-if="error" class="error">{{ error }}</div>
@@ -141,12 +138,6 @@ function submitSearch() {
display: grid;
gap: 8px;
}
.dashboardHero__right {
display: flex;
gap: 10px;
align-items: center;
flex-wrap: wrap;
}
.dashboardHero__eyebrow {
font-size: 12px;
color: rgba(255, 255, 255, 0.42);
@@ -164,22 +155,6 @@ function submitSearch() {
color: rgba(255, 255, 255, 0.58);
max-width: 720px;
}
.primary {
padding: 12px 16px;
border-radius: 14px;
border: 1px solid rgba(77, 127, 233, 0.96);
background: rgba(77, 127, 233, 0.88);
color: #fff;
cursor: pointer;
font-weight: 800;
transition:
transform 0.16s ease,
background 0.16s ease,
border-color 0.16s ease;
}
.primary:hover {
transform: translateY(-1px);
}
.panel {
/* border: 1px solid rgba(255, 255, 255, 0.08); */
background: transparent;
@@ -359,12 +334,6 @@ function submitSearch() {
}
}
@media (max-width: 720px) {
.dashboardHero__right {
width: 100%;
}
.primary {
width: 100%;
}
.list {
grid-template-columns: 1fr;
}

View File

@@ -103,7 +103,7 @@ function thumbUrl(g) {
}
.libraryGrid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 18px;
}
.error {
@@ -176,6 +176,11 @@ function thumbUrl(g) {
border-radius: 3px;
background: rgba(255, 255, 255, 0.9);
}
@media (max-width: 1400px) {
.libraryGrid {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
}
@media (max-width: 1200px) {
.libraryGrid {
grid-template-columns: repeat(2, minmax(0, 1fr));