Files
Motula-Translate-Backend/public/assets/scss/theme-dark/components/plugin-overrides/_dropzone.scss
2024-01-21 17:18:37 +01:00

33 lines
628 B
SCSS

// npm package: dropify
// github link: https://github.com/dropzone/dropzone
.dropzone {
background: $input-bg;
overflow: auto;
border: 1px solid $input-border-color;
border-radius: $input-border-radius;
@media (min-width: 1400px) {
min-height: 200px;
}
max-height: 200px;
padding: 0;
&.dz-clickable {
.dz-message {
margin-top: 65px;
* {
@extend .text-muted;
}
}
}
.dz-preview {
&.dz-image-preview {
background: $input-bg;
}
&.dz-file-preview,
&.dz-image-preview {
.dz-image {
border-radius: $input-border-radius;
}
}
}
}