Vulcan/packages/vulcan-forms-upload/lib/Upload.scss
2017-03-28 12:07:01 +09:00

30 lines
No EOL
471 B
SCSS
Executable file
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

.upload-field {
display: flex;
align-items: center;
justify-content: flex-start;
}
.dropzone-base {
border: 4px dashed #ccc;
padding: 30px;
transition: "all 0.5s";
width: 300px;
cursor: pointer;
color: #ccc;
}
.dropzone-active {
border: #4FC47F 4px solid;
}
.dropzone-reject {
border: #DD3A0A 4px solid;
}
.upload-state {
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
flex-basis: 300px;
}