我的图像的缩略图预览在我的放置区之外(它显示在下面)。如何让它显示在 dropzone / 而不是 dropzone 中?
这是我的代码:
<ReactDropzone
accept="image/*"
onDrop={this.onDrop}
style={{"width" : "100%", "height" : "25vw", "background" : "lightGrey",}}
>
<Typography
color='inherit'
align='center'
syle={{"verticalAlign" : "center"}}
marginTop='20'
>
<br/><br/><br/>
<svg xmlns="http://www.w3.org/2000/svg" justifyContent="center" width="30%" height="30%" viewBox="0 0 24 24" color="white"><path d="M9 16h6v-6h4l-7-7-7 7h4zm-4 2h14v2H5z"/></svg>
<div>Upload or Drop photo here</div>
</Typography>
</ReactDropzone>
使用 ReactDropzone 配置:
dropzone: {
padding: theme.spacing.unit * 0,
img: {
borderRadius: '10px',
verticalAlign: 'bottom',
width: '10',
maxHeight: '95%'
}