overflow
This commit is contained in:
parent
6003cfde04
commit
6e6a1c0c1d
1 changed files with 2 additions and 2 deletions
|
@ -16,12 +16,12 @@ export const SolidBodyForm = observer((props: IDefaultSceneManagerFormProps) =>
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div style={{ display: "flex", flexDirection: "column", alignItems: "center" }}>
|
<div style={{ display: "flex", flexDirection: "column", alignItems: "center", overflowX: "auto", height: "100%" }}>
|
||||||
<>
|
<>
|
||||||
{match(store.solidBodyStoreType)
|
{match(store.solidBodyStoreType)
|
||||||
.with(SolidBodyStoreType.previewSolid, () => (
|
.with(SolidBodyStoreType.previewSolid, () => (
|
||||||
<>
|
<>
|
||||||
<CoreText text={"Твердое тело"} type={CoreTextType.header} />
|
<CoreText text={"Твердое тело"} type={CoreTextType.header} />
|
||||||
<CoordsForm store={store} update={store.updateBodySimulation} />
|
<CoordsForm store={store} update={store.updateBodySimulation} />
|
||||||
<CoreText text={"Тип твердого тела: " + store.viewModel.solidType} type={CoreTextType.header} />
|
<CoreText text={"Тип твердого тела: " + store.viewModel.solidType} type={CoreTextType.header} />
|
||||||
</>
|
</>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue