Vben
2021-04-13 2cdf2c28c4ba9c07093a78e0f554901e81fcd9db
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
.bg-white {
  background-color: @component-background !important;
}
 
html[data-theme='light'] {
  .text-secondary {
    color: rgba(0, 0, 0, 0.45);
  }
}
 
html[data-theme='dark'] {
  .text-secondary {
    color: #8b949e;
  }
 
  .ant-card-grid-hoverable:hover {
    box-shadow: 0 3px 6px -4px rgb(0 0 0 / 48%), 0 6px 16px 0 rgb(0 0 0 / 32%),
      0 9px 28px 8px rgb(0 0 0 / 20%);
  }
 
  .ant-card-grid {
    box-shadow: 1px 0 0 0 #434343, 0 1px 0 0 #434343, 1px 1px 0 0 #434343, 1px 0 0 0 #434343 inset,
      0 1px 0 0 #434343 inset;
  }
 
  .ant-alert-message,
  .ant-alert-with-description .ant-alert-message,
  .ant-alert-description {
    color: rgba(0, 0, 0, 0.85);
  }
 
  .ant-checkbox-checked .ant-checkbox-inner::after {
    border-top: 0;
    border-left: 0;
  }
}