build 220: remap tile zoom levels S/M/L

Old S (0.75×) removed — too small. Old M→S (1×), old L→M (1.35×),
new L added at 1.75×. Stored 0.75 in localStorage falls back to 1×.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
claude
2026-06-13 10:58:55 +00:00
parent 60f1e2c511
commit 261ca98103
@@ -30,11 +30,11 @@ import { TrashProjectButtonTooltip } from './table/cells/action-buttons/trash-pr
// ── Tile zoom ─────────────────────────────────────────────────────────────────
type ZoomLevel = 0.75 | 1 | 1.35
type ZoomLevel = 1 | 1.35 | 1.75
const ZOOM_OPTIONS: { value: ZoomLevel; label: string }[] = [
{ value: 0.75, label: 'S' },
{ value: 1, label: 'M' },
{ value: 1.35, label: 'L' },
{ value: 1, label: 'S' },
{ value: 1.35, label: 'M' },
{ value: 1.75, label: 'L' },
]
const ZOOM_STORAGE_KEY = 'lumiere-card-scale'