.dropzone {
border-radius: 4px;
border: 2px dashed #0087f7 !important;
width: 500px;
margin-left: auto;
margin-right: auto;
margin-bottom: 1em;
}
.dz-image {
border: 1px solid #444;
}
.dz-success-mark {
background-color: rgb( 102, 187, 106, .8 )!important;
}
.dz-success-mark svg {
font-size: 54px;
fill: #fff !important;
}
.dz-error-mark {
background-color: rgba( 239, 83, 80, .8 ) !important;
}
.dz-error-mark svg {
font-size: 54px;
fill: #fff !important;
}
const dropzone = new Dropzone( '.dropzone', {
url: '/upload',
});
const defaultImage = 'sample.png';
const mockFile = { name: 'default-image', size: 12345 }
dropzone.displayExistingFile( mockFile, defaultImage );