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
| /* eslint-disable */
| /**柯礼钦
| * 4/6/2020, 10:41:26 AM
| * doc comment for the file goes here
| */
|
| /** Happy Coding */
| .notify-list {
| &-main {
| margin: 20px 0;
| & .ant-alert-warning {
| background: #fff9e5 !important;
| border: 0 !important;
| }
| &-dom {
| width: 100%;
| display: flex;
| &-msg {
| width: 55%;
| overflow: hidden;
| text-overflow: ellipsis;
| white-space: nowrap;
| margin-right: 20px;
| }
| &-fuc {
| font-family: PingFangSC-Medium;
| font-size: 14px;
| color: #559DE6;
| line-height: 22px;
| cursor: pointer;
| letter-spacing: 1px;
| }
| }
| }
| }
|
|