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
@import "element-ui/lib/theme-chalk/index.css";
@import "./variable.scss";
@import "./reset-element.scss";
 
ul,
ol,
li {
  list-style: none;
  padding: 0;
  margin: 0;
  border: 0;
  outline: 0;
}
.Badge {
  width: 6px;
  height: 6px;
  background: red;
  border-radius: 100%;
  display: inline-block;
  margin-bottom: 1px;
  margin-right: 5px;
}
.success {
  background: #06c062;
}
.error {
  background: #f62f2f;
}
.warning-radio {
  background: #e6a23c;
}
.warning {
  background: rgba(0, 0, 0, 0.4);
}