Skip to content

Commit

Permalink
fix light mode for hardware lock and change claimed to redeemed
Browse files Browse the repository at this point in the history
Signed-off-by: MarcoMandar <[email protected]>
  • Loading branch information
MarcoMandar committed Sep 24, 2024
1 parent bcad284 commit eaad471
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions components/DataTableMyRelays/columns/LockStatusColumn.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,13 @@ defineProps<{
<Icon name="material-symbols:lock" />
Locked
</div>
<div v-else-if="isHardware" class="text-athena-50">
<div v-else-if="isHardware" class="text-athena-600 dark:text-athena-50">
<Icon name="material-symbols:memory" />
Hardware
</div>
<div v-else-if="isVerified" class="text-athena-50">-</div>
<div v-else-if="isVerified" class="text-athena-600 dark:text-athena-50">
-
</div>
<div v-else class="text-orange-600 dark:text-orange-500">
<Icon name="material-symbols:lock" />
Lock Required
Expand Down
4 changes: 2 additions & 2 deletions pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@

<div class="flex gap-0 lg:gap-32 flex-col lg:flex-row">
<div class="my-4 flex flex-col border-l-4 border-cyan-600 pl-3">
<h3>Claimed rewards</h3>
<h3>Redeemed rewards</h3>
<template v-if="claimedPending">
<USkeleton class="w-[15rem] h-10" />
</template>
Expand All @@ -132,7 +132,7 @@
</template>
</div>
<div class="my-4 flex flex-col border-l-4 border-cyan-600 pl-3">
<h3>Claimable rewards</h3>
<h3>Redeemable rewards</h3>
<template v-if="claimablePending">
<USkeleton class="w-[15rem] h-10" />
</template>
Expand Down

0 comments on commit eaad471

Please sign in to comment.