Skip to content

Commit 9121a58

Browse files
committed
Reduce padding
1 parent d865191 commit 9121a58

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

react-app/src/home/viewer/StepDetails.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ const ListOutputs = ({ outputs }) => {
353353
<Typography>Outputs ({Object.keys(outputs).length})</Typography>
354354
</AccordionSummary>
355355
<AccordionDetails>
356-
<Grid container spacing={1}>
356+
<Grid container spacing={0}>
357357
{Object.entries(outputs).map(([key, value]) => (
358358
<>
359359
<Grid item xs={2}>
@@ -389,10 +389,10 @@ const ListSuccessCriteria = ({ successCriteriaList }) => {
389389
<AccordionDetails>
390390
{successCriteriaList.map((successCriteria, index) => (
391391
<Box display="flex" width="100%">
392-
<Box justifyContent="right" sx={{ p: 1 }}>
392+
<Box justifyContent="right" sx={{ p: 0 }}>
393393
-
394394
</Box>
395-
<Box justifyContent="left" sx={{ p: 1 }} >
395+
<Box justifyContent="left" sx={{ p: 0 }} >
396396
{successCriteria.context && <Typography color="text.secondary" >context: {successCriteria.context}</Typography>}
397397
{successCriteria.condition && <Typography color="text.secondary" >condition: {successCriteria.condition}</Typography>}
398398
{successCriteria.type && <Typography color="text.secondary" >type: {successCriteria.type}</Typography>}

0 commit comments

Comments
 (0)