Skip to content

Commit

Permalink
add design change
Browse files Browse the repository at this point in the history
  • Loading branch information
zlayine committed Oct 18, 2023
1 parent 5e0477e commit 551b5f2
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions resources/js/components/pages/Settings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,12 @@
class="flex flex-col mb-6 space-y-2 w-full md:w-1/2 transition-all"
>
<p class="col-span-2">Please complete these steps in order to use the platform:</p>
<div v-if="walletAccount" class="bg-red-500 p-2 text-white rounded-md">Add a wallet account</div>
<div v-if="tokens?.length" class="bg-red-500 p-2 text-white rounded-md">Create an API token</div>
<div v-if="!walletAccount" class="bg-primary-light p-2 text-white rounded-md">
1. Add a wallet account
</div>
<div v-if="!tokens?.length" class="bg-primary-light p-2 text-white rounded-md">
{{ walletAccount ? '1.' : '2.' }} Create an API token
</div>
</div>
<div class="flex flex-col space-y-8">
<div class="">
Expand Down

0 comments on commit 551b5f2

Please sign in to comment.