diff --git a/src/view/mintIndex.vue b/src/view/mintIndex.vue
index 34b363d..a0b3b8a 100644
--- a/src/view/mintIndex.vue
+++ b/src/view/mintIndex.vue
@@ -188,10 +188,10 @@
-
{
if (getAddress.value) {
const [num1, num2, minted] = await fetchWLCount(getAddress.value)
if (num1 > 0 && num2 > 0) {
- statusTxt.value = 'Eligible for minting in Guaranteed and FCFS rounds'
+ statusTxt.value = 'Guaranteed & FCFS Minting Eligible'
} else if (num1 > 0) {
- statusTxt.value = 'Boom! you are on the Guaranteed Whitelist'
+ statusTxt.value = 'Congrats!Guaranteed Whitelisted'
} else if (num2 > 0) {
- statusTxt.value = 'Congrats,you are on the fcfs whitelist'
+ statusTxt.value = 'Congrats!FCFS Whitelisted!'
} else {
- statusTxt.value = 'Regrettably, you are not on the whitelist'
+ statusTxt.value = 'Not on the whitelist'
}
let whiteAmount = num1 - minted
// 第2阶段开启后, 可mint总数等于必中白和幸运白的总数
@@ -2857,4 +2857,12 @@ onMounted(() => {
}
}
}
+.nowrap {
+ text-wrap: nowrap;
+ white-space: nowrap;
+ span {
+ text-wrap: nowrap;
+ white-space: nowrap;
+ }
+}