blob: 31a67d9e6b9895114849467dd7da9384842e4ba5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
.active-dragging {
border: 3px dashed $dark-blue;
border-radius: 20px;
.draggable-wrapper {
opacity: 0.5;
}
}
.file-upload-box {
@extend .body-1;
display: flex;
text-align: center;
flex-direction: column;
justify-content: center;
border: 2px dashed $light-gray;
padding-top: 20px;
padding-bottom: 20px;
width: 382px;
align-items: center;
.upload-btn {
padding: 4px 20px;
}
.drag-text {
color: $blue;
@extend .body-1-semibold;
}
.or-text {
margin-top: 10px;
margin-bottom: 10px;
}
}
|