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
| /*postcss-pxtransform disable*/
| @use './common.scss' as *;
|
| .main-cell-container {
| padding-top: 92px;
| .main-cell-wrapper {
| padding: boleGetCssVar('size', 'body-padding-h');
| padding-top: 24px;
| border-radius: 15px;
| background: #ffffff;
| box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
|
| .main-cell-title {
| font-size: 20px;
| font-weight: 600;
| text-align: center;
| color: #000000;
| line-height: 28px;
| }
|
| .main-cell-icon {
| display: flex;
| justify-content: center;
| margin-top: 20px;
| }
| }
| }
|
|