-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(bridge): single field bridge form
- Loading branch information
1 parent
06bed43
commit bbf404f
Showing
8 changed files
with
63 additions
and
52 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,11 @@ | ||
<script> | ||
import { _ } from "svelte-i18n"; | ||
import SelectChain from "./form/SelectChain.svelte"; | ||
</script> | ||
|
||
<div class="taiko-banner bg-cover bg-center bg-no-repeat w-full h-36 rounded-lg py-4 flex flex-col items-center justify-center"> | ||
<h1 class="text-2xl font-bold"> | ||
{$_("home.title")} | ||
</h1> | ||
<SelectChain /> | ||
</div> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
<div></div> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,22 @@ | ||
<script lang="ts"> | ||
import SelectToken from "../../components/buttons/SelectToken.svelte"; | ||
import { _ } from "svelte-i18n"; | ||
import SelectToken from "../../components/buttons/SelectToken.svelte"; | ||
import BridgeForm from "../../components/form/BridgeForm.svelte"; | ||
import TaikoBanner from "../../components/TaikoBanner.svelte"; | ||
</script> | ||
|
||
<div class="hero bg-base-100 mt-12"> | ||
<div class="hero-content text-center"> | ||
<div class="max-w-lg w-[460px]"> | ||
<h1 class="text-2xl font-bold"> | ||
{$_("home.title")} | ||
</h1> | ||
<div class="mt-8 flex items-center justify-center"> | ||
<TaikoBanner /> | ||
<!-- <div class="mt-8 flex items-center justify-center px-2"> | ||
<span class="font-bold mr-2">{$_("home.selectToken")}</span> | ||
<SelectToken /> | ||
</div> --> | ||
<div class="px-4"> | ||
<BridgeForm /> | ||
</div> | ||
<BridgeForm /> | ||
</div> | ||
</div> | ||
</div> |