Files
sibedas/resources/scss/plugins/_dropzone.scss
2025-01-16 17:16:14 +07:00

23 lines
380 B
SCSS
Executable File

//
// dropzone.scss
//
.dropzone {
border: 2px dashed $input-border-color;
background: $input-bg;
border-radius: 6px;
cursor: pointer;
min-height: 150px;
padding: 20px;
.dz-message {
text-align: center;
margin: 2rem 0;
}
&.dz-started {
.dz-message {
display: none;
}
}
}