torusresearch/solana-wallet

No indicator for active currency in light mode

Opened this issue · 0 comments

Steps:

  1. Go to transfer page
  2. There is no indicator for the active currency as show in the photo below.

image

Proposed Solution:

.active-currency {
@apply dark:bg-app-gray-700;
}
.currency-selector {
@apply py-1 px-4 uppercase text-xs cursor-pointer border-0 text-app-text-500 dark:text-app-text-dark-600;
}

.currency-selector {
  @apply py-1 px-4 uppercase text-xs cursor-pointer border-0 text-app-text-500 dark:text-app-text-dark-600;
}

.active-currency {
  @apply dark:bg-app-gray-700 border dark:border-0;
}