Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(bridge-ui-v2): light theme #14524

Merged
merged 18 commits into from
Aug 18, 2023
Prev Previous commit
Next Next commit
wip
  • Loading branch information
jscriptcoder committed Aug 18, 2023
commit 93981f9af1c626fbf3f817dfdec1a59aff12ce2e
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@
<div class="flex flex-col" style={`min-height: calc(${transactionsToShow.length} * 80px);`}>
{#if isDesktopOrLarger}
<div class="h-sep" />
<div class="text-white flex">
<div class="text-primary-content flex">
<div class="w-1/5 py-2">{$t('activities.header.from')}</div>
<div class="w-1/5 py-2">{$t('activities.header.to')}</div>
<div class="w-1/5 py-2">{$t('activities.header.amount')}</div>
Expand All @@ -137,7 +137,7 @@
{/if}

{#if renderLoading}
<div class="flex items-center justify-center text-white h-[80px]">
<div class="flex items-center justify-center text-primary-content h-[80px]">
<Spinner /> <span class="pl-3">{$t('common.loading')}...</span>
</div>
{/if}
Expand All @@ -154,7 +154,7 @@
{/if}

{#if renderNoTransactions}
<div class="flex items-center justify-center text-white h-[80px]">
<div class="flex items-center justify-center text-primary-content h-[80px]">
<span class="pl-3">{$t('activities.no_transactions')}</span>
</div>
{/if}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
tabindex="0"
on:click={handleClick}
on:keydown={handlePress}
class="flex text-white md:h-[80px] h-[45px] w-full">
class="flex text-primary-content md:h-[80px] h-[45px] w-full">
{#if isDesktopOrLarger}
<div class="w-1/5 py-2 flex flex-row">
<ChainSymbolName chainId={item.srcChainId} />
Expand All @@ -47,7 +47,7 @@
{item.symbol}
</div>
{:else}
<div class="flex text-white h-[80px] w-full">
<div class="flex text-primary-content h-[80px] w-full">
<div class="flex-col">
<div class="flex">
<ChainSymbolName chainId={item.srcChainId} />
Expand Down