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:
@@ -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'
|
||||
|
||||
|
||||
Reference in New Issue
Block a user