Align admin link controls

This commit is contained in:
2026-07-10 12:22:53 -07:00
parent feb595af16
commit 3fe3333768
4 changed files with 20 additions and 3 deletions

View File

@@ -51,6 +51,16 @@
max-width: 500px;
}
.link-copy-action > .btn {
display: inline-flex;
align-items: center;
justify-content: center;
width: 5.5rem;
height: 2.3rem;
flex-shrink: 0;
text-align: center;
}
/* --- Game over --- */
.gameover-container {
max-width: 800px;

View File

@@ -6,10 +6,17 @@
// - Add a CHANGELOG entry only when a commit changes something players can
// see. Skip refactors, tests, and tooling. Keep wording player-facing.
export const VERSION = 15;
export const VERSION = 16;
// Newest first. Each entry: { version, date: 'YYYY-MM-DD', changes: [string, ...] }.
export const CHANGELOG = [
{
version: 16,
date: '2026-07-10',
changes: [
'Open and Copy controls in the Admin Panel now have matching sizes.',
],
},
{
version: 15,
date: '2026-07-10',

View File

@@ -153,7 +153,7 @@
{#each data.players as p}
<tr>
<td>
{#if p.avatar_smell}
{#if p.name && p.name !== p.player_name}
{p.name}
{:else}
<span class="text-muted">Not chosen yet</span>