Enhance SlicerIntegration layout for better responsiveness
- Wrapped the ObjectProperty component in a div with defined width properties to improve layout consistency and responsiveness within the SlicerIntegration component. - Ensured that the display adapts better to varying screen sizes, enhancing user experience.
This commit is contained in:
parent
6ec1e9d3c0
commit
4c19df717b
@ -184,10 +184,18 @@ const SlicerIntegration = () => {
|
||||
: objectData?.name || 'Slicer Integration'}
|
||||
</Title>
|
||||
{!loading && (
|
||||
<ObjectProperty
|
||||
objectData={objectData}
|
||||
{...getModelProperty('printer', 'state')}
|
||||
/>
|
||||
<div
|
||||
style={{
|
||||
maxWidth: '400px',
|
||||
width: '400px',
|
||||
minWidth: '100px'
|
||||
}}
|
||||
>
|
||||
<ObjectProperty
|
||||
objectData={objectData}
|
||||
{...getModelProperty('printer', 'state')}
|
||||
/>
|
||||
</div>
|
||||
)}
|
||||
</Flex>
|
||||
{slicerUploadsButton()}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user