summaryrefslogtreecommitdiffstats
path: root/openecomp-ui/resources/scss/components/_dropzone.scss
blob: 2479ae7f0c4fcc8941e8a7b09b9af07074f3e641 (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
31
.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;
  }
}