Skip to content

Commit

Permalink
fix: proxy provider style
Browse files Browse the repository at this point in the history
  • Loading branch information
Zephyruso committed Feb 20, 2025
1 parent dcdd87f commit af9ee0a
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions src/components/proxies/ProxyProvider.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
<div class="flex items-center gap-2">
<div class="text-lg font-medium sm:text-xl">
{{ proxyProvider.name }}
<span class="text-sm"> ({{ proxiesCount }}) </span>
<span class="ml-1 text-sm text-base-content/60"
>{{ $t('updated') }} {{ fromNow(proxyProvider.updatedAt) }}</span
>
<span class="text-sm font-normal text-base-content/60"> ({{ proxiesCount }}) </span>
<span class="text-sm font-normal text-base-content/60">
{{ $t('updated') }} {{ fromNow(proxyProvider.updatedAt) }}
</span>
</div>
<div class="flex-1" />
<div class="flex gap-2">
Expand Down Expand Up @@ -43,8 +43,9 @@
class="flex justify-between text-sm text-base-content/60"
>
<div>
{{ subscriptionInfo.used }} / {{ subscriptionInfo.total }} (
{{ subscriptionInfo.percentage }}% )
{{ subscriptionInfo.used }} / {{ subscriptionInfo.total }} ({{
subscriptionInfo.percentage
}}%)
</div>
<div>{{ subscriptionInfo.expirePrefix() }}: {{ subscriptionInfo.expireStr() }}</div>
</div>
Expand Down

0 comments on commit af9ee0a

Please sign in to comment.