UI update

Added total invested fund amount to fund
This commit is contained in:
sairaj mote 2021-05-13 17:10:29 +05:30
parent 647fb995dc
commit a546e216bf
4 changed files with 22 additions and 5 deletions

View File

@ -667,9 +667,15 @@ sm-option {
grid-template-columns: minmax(0, 1fr);
}
.fund-block__details {
gap: 2rem;
}
.fund-block__details > .grid:nth-of-type(1), .fund-block__details > .grid:nth-of-type(2) {
grid-template-columns: 1fr 1fr;
}
.fund-block__details > .grid:nth-of-type(3), .fund-block__details > .flex {
grid-column: 1/3;
}
.flex-grid {
grid-template-columns: repeat(auto-fill, minmax(24rem, 1fr));

2
css/main.min.css vendored

File diff suppressed because one or more lines are too long

View File

@ -589,10 +589,15 @@ sm-option{
grid-template-columns: minmax(0, 1fr);
}
.fund-block__details{
gap: 2rem;
& > .grid:nth-of-type(1),
& > .grid:nth-of-type(2){
grid-template-columns: 1fr 1fr;
}
& > .grid:nth-of-type(3),
& > .flex{
grid-column: 1/3;
}
}
.flex-grid{
grid-template-columns: repeat(auto-fill, minmax(24rem, 1fr));

View File

@ -10105,7 +10105,7 @@ Bitcoin.Util = {
const fundBlockTemplate = document.createElement('template')
fundBlockTemplate.innerHTML = `
<li class="fund-block">
<div class="fund-block__details grid gap-1 margin-bottom-1-5r">
<div class="fund-block__details grid margin-bottom-1-5r">
<div class="grid flow-column gap-1">
<div class="grid">
<span class="label">Start date</span>
@ -10126,11 +10126,15 @@ Bitcoin.Util = {
<span class="value base-usd"></span>
</div>
</div>
<div class="grid">
<div class="tapout-container grid">
<span class="value margin-bottom-0-5r">Tapouts</span>
<ul class="tapout-list flex gap-1-5"></ul>
</div>
<div class="grid flow-column gap-1 align-end justify-end">
<div class="flex align-center space-between">
<div class="grid">
<span class="label">Total investment</span>
<span class="value total-investment"></span>
</div>
<a class="term-link" target="_blank">See terms</a>
</div>
</div>
@ -10150,7 +10154,8 @@ Bitcoin.Util = {
endDate,
baseUsd,
baseBtc,
tapouts
tapouts,
totalInvestment
} = obj
const fundBlock = fundBlockTemplate.content.cloneNode(true)
fundBlock.querySelector('.term-link').href = termTxHref
@ -10158,6 +10163,7 @@ Bitcoin.Util = {
fundBlock.querySelector('.end-date').textContent = endDate
fundBlock.querySelector('.base-usd').textContent = `₹${baseUsd}`
fundBlock.querySelector('.base-btc').textContent = `$${baseBtc}`
fundBlock.querySelector('.total-investment').textContent = `$${totalInvestment}`
const tapoutsFrag = document.createDocumentFragment()
for(tapout in tapouts){