feat(ui): box shadow
This commit is contained in:
@@ -143,7 +143,12 @@ export const RightSidePanel = ({ pairForEdit }: RightSidePanelProps) => {
|
|||||||
|
|
||||||
<Box>
|
<Box>
|
||||||
{browserSteps.map(step => (
|
{browserSteps.map(step => (
|
||||||
<Box key={step.id} sx={{ padding: '10px', marginBottom: '10px' }}>
|
<Box key={step.id} sx={{
|
||||||
|
boxShadow: 5,
|
||||||
|
padding: '10px',
|
||||||
|
marginBottom: '10px',
|
||||||
|
borderRadius: '4px',
|
||||||
|
}}>
|
||||||
<TextField
|
<TextField
|
||||||
label="Label"
|
label="Label"
|
||||||
value={labels[step.id] || step.label || ''}
|
value={labels[step.id] || step.label || ''}
|
||||||
|
|||||||
Reference in New Issue
Block a user