diff --git a/src/router/index.js b/src/router/index.js index 894e101..4688309 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -36,6 +36,11 @@ const routes = [ name: 'MapDetail', component: () => import('@/views/index/MapDetail.vue') }, + { + path: 'author', + name: 'ActiveAuthor', + component: () => import('@/views/index/ActiveAuthor.vue') + }, { path: 'weapon-match', name: 'WeaponMatch', diff --git a/src/views/index.vue b/src/views/index.vue index 9698867..1cb2184 100644 --- a/src/views/index.vue +++ b/src/views/index.vue @@ -62,6 +62,7 @@ onMounted(() => { @@ -226,6 +227,29 @@ onMounted(() => { background: #0056b3; } +.score-btn { + display: inline-block; + width: 100%; + padding: 12px; + background: #a8d1fb; + color: white; + text-align: center; + text-decoration: none; + border-radius: 5px; + transition: background 0.2s; + font-size: 1rem; +} + +.score-btn:hover { + background: #6c8bb9; +} + +.actions { + display: flex; + flex-direction: column; + gap: 12px; +} + @media (max-width: 480px) { .info-grid { grid-template-columns: 1fr;