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
| @import '@/styles/common.scss';
|
| .taskDetail-page-wrapper {
| .taskDetail-attention-icon {
| margin-left: 10px;
| width: 32px;
| height: 32px;
| }
|
| .safe-cell-title-wrapper {
| display: flex;
| align-items: center;
|
| .safe-cell-title-icon {
| width: 32px;
| height: 32px;
| margin-right: 8px;
|
| .safe-cell-title {
| font-weight: 600;
| font-size: 28px;
| color: boleGetCssVar('text-color', 'primary');
| line-height: 40px;
| }
| }
| }
|
| .safe-cell-content {
| font-size: 24px;
| color: boleGetCssVar('text-color', 'secondary');
| text-align: left;
| word-break: break-all;
| line-height: 34px;
|
| .safe-cell-content-btn {
| color: boleGetCssVar('color', 'primary');
| display: inline;
| }
| }
| }
|
|