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
| @use './common.scss' as *;
|
| .main-cell-container {
| .main-cell-wrapper {
| padding: 18px 20px 60px;
| border-radius: 32px;
| background: #ffffff;
|
| .main-cell-title-wrapper {
| margin-left: 12px;
| display: flex;
| align-items: center;
| height: 88px;
|
| .main-cell-title-line {
| width: 8px;
| height: 36px;
| background: boleGetCssVar('color', 'primary');
| border-radius: 4px;
| margin-right: 16px;
| }
|
| .main-cell-title {
| font-size: 34px;
| font-weight: 400;
| color: boleGetCssVar('text-color', 'primary');
| line-height: 44px;
| }
| }
|
| .main-cell-icon {
| display: flex;
| justify-content: center;
| margin-top: 40px;
| }
| }
| }
|
|