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

View File

@ -710,7 +710,7 @@
<h4>${nonce}</h4>
</div>
<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>
`;
},
@ -1646,7 +1646,7 @@
function parseTransactions(txList) {
if (!Array.isArray(txList))
txList = Object.values(txList)
txList = [txList]
let latestTxArray = [];
txList.forEach(tx => {
const {

File diff suppressed because one or more lines are too long