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
| /* pages/m_ledger/ledgerupload/ledgerupload.wxss */
| .page {
| background-color: white;
| }
|
| .page__hd {
| font-weight: 600;
| }
|
| .page__bd {
| padding: 10px;
| }
|
| .upload-title-class {
| font-size: small;
| }
|
| .text-area {
| background-color: rgba(255, 255, 255, 0.185);
| width: 100%;
| }
|
| .img-group {
| display: flex;
| flex-wrap: wrap;
| }
|
| .img-group>view {
| width: 30vw;
| text-align: center;
| }
|
| .img-group .img-group_img {
| width: 29vw;
| height: 29vw;
| }
|
|