fix: 심사 - 심사대상 이미지 view size 조정

mpower
minuk926 2 years ago
parent 0333e8087b
commit 0bc3fddbb7

@ -116,7 +116,7 @@ const ProcessJudge = (props) => {
<Grid item xs={12}>
{selectedImg && (
<ImageList sx={{ width: '100%', height: 554, margin: '0' }}>
<img src={selectedImg.url} alt={selectedImg.imgName} loading="lazy" />
<img style={{ maxWidth: '690px' }} resizemode="contain" src={selectedImg.url} alt={selectedImg.imgName} loading="lazy" />
</ImageList>
)}
</Grid>

@ -116,7 +116,7 @@ const ProcessParkingJudge = (props) => {
<Grid item xs={12}>
{selectedImg && (
<ImageList sx={{ width: '100%', height: 554, margin: '0' }}>
<img src={selectedImg.url} alt={selectedImg.imgName} loading="lazy" />
<img style={{ maxWidth: '690px' }} resizemode="contain" src={selectedImg.url} alt={selectedImg.imgName} loading="lazy" />
</ImageList>
)}
</Grid>

Loading…
Cancel
Save