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
| /**
| * app
| * @author Tevin
| */
|
| @import "./sassMixin";
|
| .m-price {
| &::before {
| font-size: 0.8em;
| content: '¥';
| }
| }
|
| .m-mark {
| color: #fb4242;
| }
|
| .m-text-success {
| color: #22c322;
| }
| .m-text-info {
| color: #05b7c7;
| }
| .m-text-warning {
| color: #db9d00;
| }
| .m-text-danger {
| color: #FF5722;
| }
| .m-text-ignore {
| color: rgba(0, 0, 0, 0.45);
| }
|
|