23 lines
436 B
SCSS
Executable File
23 lines
436 B
SCSS
Executable File
.file-uploader {
|
|
display: flex;
|
|
> label {
|
|
flex: 1 0;
|
|
}
|
|
.drag-box {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 100%;
|
|
height: 70px;
|
|
border: $border-width solid $border-color;
|
|
border-radius: $border-radius;
|
|
background-color: #fff;
|
|
cursor: pointer;
|
|
}
|
|
.filled {
|
|
border: $border-width solid rgb(96, 205, 255);
|
|
background-color: rgb(241, 241, 241);
|
|
}
|
|
}
|
|
//
|