-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
create new dashboard for rebranding (#686)
- Loading branch information
Showing
7 changed files
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
packages/desktop/views/dashboard/new-dashboard/NewDashboard.svelte
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<script lang="ts"> | ||
import { Pane } from '@ui' | ||
import { selectedAccount } from '@core/account/stores' | ||
</script> | ||
|
||
{#if $selectedAccount} | ||
<wallet-container | ||
class="w-full h-full flex flex-nowrap p-8 relative flex-1 | ||
bg-gray-50 dark:bg-gray-900 justify-center items-center" | ||
> | ||
{#key $selectedAccount?.index} | ||
<div class="h-full w-full flex flex-col gap-8"> | ||
<Pane>Balance section</Pane> | ||
<Pane classes="flex-grow">Activity/Token section</Pane> | ||
</div> | ||
{/key} | ||
</wallet-container> | ||
{/if} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export { default as NewDashboard } from './NewDashboard.svelte' |
1 change: 1 addition & 0 deletions
1
packages/shared/src/lib/core/router/enums/dashboard-route.enum.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters