fix: prevent architecture overview node clipping

This commit is contained in:
lda
2026-07-13 08:48:21 +07:00 Verified
parent 58bbcb1fa8
commit a8ce2668e8
2 changed files with 2 additions and 2 deletions
@@ -194,7 +194,7 @@
.interactive-figure[data-figure-size="stage"][data-figure-focus-level="0"] {
--figure-node-width: 236px;
--figure-node-height: 102px;
--figure-node-height: 120px;
}
.interactive-figure[data-figure-size="stage"][data-figure-focus-level="0"] .figure-node__label {
@@ -23,7 +23,7 @@ export const FIGURE_NODE_DIMENSIONS: Record<FigureLayoutSize, {
readonly height: number;
}> = {
standard: { width: 236, height: 102 },
wide: { width: 236, height: 102 },
wide: { width: 236, height: 120 },
stage: { width: 256, height: 150 },
};