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

Adds json rpc result text area #334

Merged
merged 3 commits into from
May 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@ section {
margin: 20px 0 20px 0;
}

textarea {
height: auto;
width: 100%;
max-width: 100%;
}

.info-text {
font-size: 1.1em;
}
Expand Down
24 changes: 21 additions & 3 deletions src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ <h4 class="card-title">
Transfer Tokens
</button>

<a
<a
id="transferTokensDeeplink"
>
<button
Expand Down Expand Up @@ -1467,8 +1467,18 @@ <h4>
</section>
<section>
<div class="row d-flex justify-content-center">
<div class="col-xl-4 col-lg-6 col-md-12 col-sm-12 col-12">
<div class="card">
<div class="col-xl-4 col-lg-6 col-md-12 col-sm-12 col-12 d-flex align-items-stretch">
<div class="card full-width">
<div class="card-body">
<h4 class="card-title">
JSON RPC Result
</h4>
<textarea name="json-rpc-response" id="json-rpc-response" rows="5"></textarea>
</div>
</div>
</div>
<div class="col-xl-4 col-lg-6 col-md-12 col-sm-12 col-12 d-flex align-items-stretch">
<div class="card full-width">
<div class="card-body">
<h4 class="card-title">
Ethereum Chain Interactions
Expand All @@ -1490,6 +1500,14 @@ <h4 class="card-title">
</div>
</div>
</div>
<div class="col-xl-4 col-lg-6 col-md-12 col-sm-12 col-12 d-flex align-items-stretch">
<div class="card full-width">
<div class="card-body">
<h4 class="card-title">
</h4>
</div>
</div>
</div>
</div>
</section>
<section>
Expand Down
Loading