1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| @use './common.scss' as *;
|
| .gas-bill-recharge-wrapper {
| .gasOrgType-card {
| border-radius: 16px;
| border: 1px solid #e8e8e8;
| padding: 28px;
| min-height: 120px;
| margin-bottom: 30px;
| display: flex;
| align-items: center;
| justify-content: space-between;
|
| &:last-child {
| margin-bottom: 0;
| }
|
| .gasOrgType-card-title {
| font-size: 36px;
| line-height: 48px;
| color: boleGetCssVar('text-color', 'primary');
| }
| }
| }
|
|