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
| /**
| * CQRCode
| * @author Tevin
| */
|
| @import "../../common/sassMixin";
|
| .c-qr-code {
| font-size: 0;
| text-align: center;
| taro-canvas-core {
| display: inline-block;
| width: auto;
| height: auto;
| canvas {
| width: auto !important;
| height: auto !important;
| max-width: 100%;
| }
| }
| .at-button {
| display: block;
| width: 100%;
| margin-top: 18px;
| }
| }
|
|