update subscription dialog (#6350)

## Summary

- Align with design and new tokens
- Change to point to comfy.org/cloud/pricing

┆Issue is synchronized with this [Notion
page](https://www.notion.so/PR-6350-update-subscription-dialog-29a6d73d365081fc80dbdced405f6b21)
by [Unito](https://www.unito.io)
This commit is contained in:
Christian Byrne
2025-10-28 15:20:21 -07:00
committed by GitHub
parent e8dabd2996
commit 4ad7531269
8 changed files with 90 additions and 43 deletions

View File

@@ -2,10 +2,14 @@
<Button
:label="label || $t('subscription.required.subscribe')"
:size="size"
:class="buttonClass"
:loading="isLoading"
:disabled="isPolling"
severity="primary"
:pt="{
root: {
class: 'w-full font-bold'
}
}"
@click="handleSubscribe"
/>
</template>
@@ -22,11 +26,9 @@ withDefaults(
defineProps<{
label?: string
size?: 'small' | 'large'
buttonClass?: string
}>(),
{
size: 'large',
buttonClass: 'w-full font-bold'
size: 'large'
}
)