Widen character sheet modal

This commit is contained in:
2026-07-10 11:58:34 -07:00
parent bf800a06db
commit 2210bcd48e
4 changed files with 22 additions and 8 deletions

View File

@@ -447,6 +447,10 @@
text-align: left;
}
.modal-box.character-sheet-modal {
max-width: 1260px;
}
.modal-close {
position: absolute;
top: 0.6rem;
@@ -544,4 +548,3 @@
color: var(--accent);
font-weight: 700;
}

View File

@@ -72,7 +72,7 @@
<svelte:window on:keydown={(e) => e.key === 'Escape' && close()} />
<div class="modal-backdrop" on:click|self={close}>
<div class="modal-box sheet-modal glass-panel">
<div class="modal-box sheet-modal character-sheet-modal glass-panel">
<button class="modal-close" on:click={close} aria-label="Close">×</button>
<h3>

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 = 12;
export const VERSION = 13;
// Newest first. Each entry: { version, date: 'YYYY-MM-DD', changes: [string, ...] }.
export const CHANGELOG = [
{
version: 13,
date: '2026-07-10',
changes: [
'Character sheets now make better use of the available space on wide screens.',
],
},
{
version: 8,
date: '2026-06-15',