@blocklet/pages-kit-block-studio 0.5.2 → 0.5.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -582,7 +582,7 @@ function Layout({ loadState, loadedData }) {
582
582
  height: state.simulatorType === 'mobile' ? 'calc(100% - 60px)' : 'calc(100% - 30px)',
583
583
  display: 'flex',
584
584
  width: '100%',
585
- backgroundColor: '#fff',
585
+ backgroundColor: 'background.paper',
586
586
  ...(state.simulatorType === 'mobile'
587
587
  ? {
588
588
  borderRadius: '0 0 20px 20px',
@@ -591,7 +591,8 @@ function Layout({ loadState, loadedData }) {
591
591
  : {
592
592
  borderBottomLeftRadius: '6px',
593
593
  borderBottomRightRadius: '6px',
594
- border: '1px solid #e0e0e0',
594
+ border: '1px solid',
595
+ borderColor: 'grey.100',
595
596
  }),
596
597
  }, children: [state.draggingSplitPane && DraggingSplitPlaceholder, (0, jsx_runtime_1.jsx)(material_1.Box, { id: "preview-iframe", component: "iframe", src: iframeUrl, sx: {
597
598
  flex: 1,