//
// _dropzone.scss
//

@use "../variables" as *;
@use "../utils/mixins" as *;

.dropzone {
    border: 2px dashed $border-color;
    background: $white;
    border-radius: 8px;
    cursor: pointer;
    min-height: 150px;
    padding: 20px;

    .dz-message {
        text-align: center;
        margin: 2rem 0;
    }

    &.dz-started {
        .dz-message {
            display: none;
        }
    }
}
