This commit is contained in:
2026-07-18 18:49:08 +09:00
parent cb86e4b40f
commit babf558d37
2 changed files with 19 additions and 1 deletions
+1
View File
@@ -270,5 +270,6 @@ export async function renderB05Route(root: HTMLElement): Promise<void> {
routes: WORKFLOW_STEP_ROUTES,
onStepClick: (stepIndex) => goToWorkflowStage(activeProjectId, WORKFLOW_STEP_ROUTES[stepIndex]),
});
layout.root.classList.add("b05-route-layout");
root.replaceChildren(layout.root);
}
+18 -1
View File
@@ -1,8 +1,25 @@
.b05-route-layout {
height: calc(100vh - var(--spacing-64));
height: calc(100dvh - var(--spacing-64));
min-height: 0;
overflow: hidden;
}
.b05-route-layout .ui-workflow-layout__body,
.b05-route-layout .ui-workflow-layout__main {
height: 100%;
min-height: 0;
}
.b05-route-layout .ui-workflow-layout__main {
overflow: hidden;
}
.b05-route__viewport {
position: relative;
width: 100%;
height: 100%;
min-height: 560px;
min-height: 0;
overflow: hidden;
background: var(--color-surface);
}