index.module.scss 1.21 KB
Newer Older
dechen lin's avatar
dechen lin committed
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
.gradientBtn {
  width: 188px;
  height: 37px;
  border-radius: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.95);
  background: linear-gradient(110deg, #38A0FF -33.56%, #0D53DE 32.84%, #5246FF 102.05%);
  // background: #3477EB;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  &:hover {
      background: #3477EB;
  }
  :global {
    .ant-upload-list-item-container {
      // display: none !important;
    }
    .ant-upload {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100% !important;
      height: 100% !important;
      line-height: 100% !important;
    }
    .ant-upload-drag {
      border: none !important;
    }
  }
}

.linearBtn {
  width: 188px;
  height: 37px;
  border-radius: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.95);
  background: linear-gradient(110deg, #38A0FF -33.56%, #0D53DE 32.84%, #5246FF 102.05%);
  // background: #3477EB;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  &:hover {
    color: rgba(255, 255, 255, 0.95) !important;
    background: linear-gradient(110deg, #38A0FF -33.56%, #38A0FF 32.84%, #38A0FF 102.05%) !important;
  }
  &:active {
    
  }
}