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