@uxda/appkit 1.0.0 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1646 -1632
- package/package.json +1 -1
- package/rollup.config.js +2 -1
- package/src/balance/components/BalanceReminder.vue +5 -11
package/package.json
CHANGED
package/rollup.config.js
CHANGED
|
@@ -15,11 +15,10 @@
|
|
|
15
15
|
<nut-button
|
|
16
16
|
class="cancel-button"
|
|
17
17
|
@click="emit('update:modelValue', false)"
|
|
18
|
-
|
|
18
|
+
block>取消</nut-button>
|
|
19
19
|
</div>
|
|
20
20
|
<div class="col">
|
|
21
21
|
<nut-button
|
|
22
|
-
shape="square" block
|
|
23
22
|
class="recharge-button"
|
|
24
23
|
@click="emit('recharge')">去充值</nut-button>
|
|
25
24
|
</div>
|
|
@@ -47,8 +46,9 @@ withDefaults(
|
|
|
47
46
|
width: 80%;
|
|
48
47
|
}
|
|
49
48
|
.balance-reminder {
|
|
49
|
+
--button-color:
|
|
50
50
|
h2 {
|
|
51
|
-
font-size:
|
|
51
|
+
font-size: 16px;
|
|
52
52
|
font-weight: bold;
|
|
53
53
|
}
|
|
54
54
|
.body {
|
|
@@ -58,8 +58,8 @@ withDefaults(
|
|
|
58
58
|
flex-direction: column;
|
|
59
59
|
align-items: center;
|
|
60
60
|
justify-content: center;
|
|
61
|
-
padding:
|
|
62
|
-
font-size:
|
|
61
|
+
padding: 40px 24px;
|
|
62
|
+
font-size: 14px;
|
|
63
63
|
text-align: center;
|
|
64
64
|
}
|
|
65
65
|
.footer {
|
|
@@ -71,12 +71,6 @@ withDefaults(
|
|
|
71
71
|
flex-grow: 1;
|
|
72
72
|
padding: 6px;
|
|
73
73
|
}
|
|
74
|
-
.nut-button {
|
|
75
|
-
border: 0;
|
|
76
|
-
}
|
|
77
|
-
.recharge-button {
|
|
78
|
-
color: #060;
|
|
79
|
-
}
|
|
80
74
|
}
|
|
81
75
|
}
|
|
82
76
|
</style>
|