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
| @import (reference) 'dingtalk-theme/dingtalk-x/mob.less';
|
| .taskModal {
| height: 100%;
| overflow-y: auto;
|
| &-item {
| position: relative;
| padding: 16px;
|
| &::after {
| content: '';
| position: absolute;
| bottom: 0;
| left: 16px;
| right: 16px;
| height: 1px;
| background-color: @common_line_light_color;
| }
|
| &-title {
| font-weight: 600;
| }
|
| &-subtitle {
| font-size: 12px;
| line-height: 20px;
| margin-top: 4px;
| }
|
| &-tag {
| margin-top: 4px;
| }
|
| &-last {
| &::after {
| content: '';
| height: 0;
| }
| }
| }
| }
|
|