Bug fixes

This commit is contained in:
sairaj mote 2023-07-14 01:08:23 +05:30
parent 55bdfbdd39
commit 2dc333807c
5 changed files with 6 additions and 6 deletions

View File

@ -885,7 +885,6 @@ theme-toggle {
} }
.page h3.heading { .page h3.heading {
text-transform: capitalize; text-transform: capitalize;
font-weight: 500;
} }
.page > h3.heading { .page > h3.heading {
margin-top: 2rem; margin-top: 2rem;
@ -1037,6 +1036,7 @@ theme-toggle {
justify-items: center; justify-items: center;
background: rgba(var(--foreground-color), 1); background: rgba(var(--foreground-color), 1);
z-index: 10; z-index: 10;
height: 100dvh;
} }
#loading h4 { #loading h4 {
margin-top: 1.5rem; margin-top: 1.5rem;

2
css/main.min.css vendored

File diff suppressed because one or more lines are too long

View File

@ -805,7 +805,6 @@ theme-toggle {
padding: 0 0 1rem 0; padding: 0 0 1rem 0;
h3.heading { h3.heading {
text-transform: capitalize; text-transform: capitalize;
font-weight: 500;
} }
& > h3.heading { & > h3.heading {
margin-top: 2rem; margin-top: 2rem;
@ -946,6 +945,7 @@ theme-toggle {
justify-items: center; justify-items: center;
background: rgba(var(--foreground-color), 1); background: rgba(var(--foreground-color), 1);
z-index: 10; z-index: 10;
height: 100dvh;
h4 { h4 {
margin-top: 1.5rem; margin-top: 1.5rem;
font-weight: 500; font-weight: 500;

View File

@ -710,7 +710,7 @@
<h4>${nonce}</h4> <h4>${nonce}</h4>
</div> </div>
<h3 class="heading">Transactions</h3> <h3 class="heading">Transactions</h3>
<div id="block_transaction_container" class="top-bottom-padding"></div> <div id="block_transaction_container" class="grid gap-1 top-bottom-padding"></div>
</div> </div>
`; `;
}, },
@ -1646,7 +1646,7 @@
function parseTransactions(txList) { function parseTransactions(txList) {
if (!Array.isArray(txList)) if (!Array.isArray(txList))
txList = Object.values(txList) txList = [txList]
let latestTxArray = []; let latestTxArray = [];
txList.forEach(tx => { txList.forEach(tx => {
const { const {

File diff suppressed because one or more lines are too long