-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Closed
Description
Because the default thumbnail width/height = 200px, while the original DZ ones are 120px, and the css for the error message hasn't been change, the error message is positioned incorrectly.
To fix...
.dropzone .dz-preview .dz-error-message {
...
top: 210px;
left: 30px;
...
}
...or could even use something like...
.dropzone .dz-preview .dz-error-message {
...
top: calc(100% + 10px);
left: calc(50% - 70px);
...
}
... to allow for the thumbnail sizes to change dynamically?
Metadata
Metadata
Assignees
Labels
No labels
