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
| /* pages/cart/item.wxss */
| .btn-wrapper {
| height: 100%;
| }
|
| .btn {
| display: inline-flex;
| justify-content: center;
| align-items: center;
| width: 120rpx;
| height: 100%;
| color: white;
| }
|
| .delete-btn {
| background-color: #e34d59;
| }
|
| .edit-btn {
| background-color: #ed7b2f;
| }
|
| .favor-btn {
| background-color: #0052d9;
| }
|
|