260718_3
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user