fix(subs): missing warn text

This commit is contained in:
Kalista Payne
2025-11-25 15:12:52 -06:00
parent 9fd0bfae46
commit f740f12b97
2 changed files with 15 additions and 2 deletions

View File

@@ -407,6 +407,12 @@
<div class="purple-bar my-auto"></div> <div class="purple-bar my-auto"></div>
</div> </div>
<div class="d-flex flex-column align-items-center mt-3"> <div class="d-flex flex-column align-items-center mt-3">
<div
v-once
class="small gray-100 w-50 text-center mb-5"
>
{{ $t('subscriptionBillingFYI') }}
</div>
<div <div
v-once v-once
class="svg-icon svg-gift-box mb-2" class="svg-icon svg-gift-box mb-2"
@@ -631,7 +637,7 @@
background-color: $purple-400; background-color: $purple-400;
height: 1px; height: 1px;
width: 50%; width: 50%;
max-width: 432px; max-width: 417px;
} }
.purple-gradient { .purple-gradient {
@@ -654,6 +660,12 @@
margin-bottom: 16px; margin-bottom: 16px;
} }
.small {
font-size: 12px;
line-height: 1.67;
max-width: 874px;
}
.stats-card { .stats-card {
border-radius: 8px; border-radius: 8px;
width: 192px; width: 192px;

View File

@@ -272,5 +272,6 @@
"unlockNGemsGift": "They'll unlock <strong><%= count %> Gems</strong> per month in the Market", "unlockNGemsGift": "They'll unlock <strong><%= count %> Gems</strong> per month in the Market",
"earn2GemsGift": "They'll earn <strong>+2 Gems</strong> every month they're subscribed", "earn2GemsGift": "They'll earn <strong>+2 Gems</strong> every month they're subscribed",
"maxGemCapGift": "They'll have the max <strong>Gem Cap</strong>", "maxGemCapGift": "They'll have the max <strong>Gem Cap</strong>",
"subscribeAgainContinueHourglasses": "Subscribe again to continue receiving Mystic Hourglasses" "subscribeAgainContinueHourglasses": "Subscribe again to continue receiving Mystic Hourglasses",
"subscriptionBillingFYI": "Subscriptions automatically renew unless you cancel at least 24 hours before the end of the current period. You can manage your subscription from the Subscription tab in settings. Your account will be charged within 24 hours of your renewal date, at the same price you initially paid."
} }