add file input

This commit is contained in:
Sébastien Thuret 2021-10-24 13:22:44 +02:00
parent f906a39f66
commit 6f63bab8a1
No known key found for this signature in database
GPG key ID: 4742E2D66933BB08
2 changed files with 32 additions and 2 deletions

View file

@ -137,6 +137,23 @@ h3.header {
color: #fff;
}
.file-dropzone {
font-size: 1.1rem;
border: 1px solid #ccc;
background: #f3f3f3;
padding: 1rem 2rem 1rem 1.5rem;
height: 220px;
position: relative;
}
.dropzone-content {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.btn-action {
display: flex;
align-items: center;