chore: resize minimap to match zoom controls width (140x90)
All checks were successful
CI / cleanup-branch (push) Has been skipped
CI / build (push) Successful in 58s
CI / docker (push) Successful in 54s
CI / deploy-feature (push) Has been skipped
CI / deploy (push) Successful in 37s

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
hsiegeln
2026-03-27 22:41:06 +01:00
parent 6393e5096f
commit 0d7d04501c

View File

@@ -4,8 +4,8 @@ import type { DiagramNode as DiagramNodeType } from '../../api/queries/diagrams'
import { colorForType } from './node-colors';
import styles from './ProcessDiagram.module.css';
const MINIMAP_WIDTH = 180;
const MINIMAP_HEIGHT = 120;
const MINIMAP_WIDTH = 140;
const MINIMAP_HEIGHT = 90;
const MINIMAP_PADDING = 4;
interface MinimapProps {