Skip to content

Commit

Permalink
copy
Browse files Browse the repository at this point in the history
  • Loading branch information
steskelt committed Mar 20, 2024
1 parent 6b152d1 commit d411b5f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
2 changes: 1 addition & 1 deletion _includes/influencerlink.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<h1 class="display-6 fw-bold text-center mt-4">Which influencer trades made money?</h1>
<div class="mx-auto mb-5 mt-2">
<a href="/rankings" class="btn btn-primary btn-lg" role="button" style="--bs-btn-font-size:28px">
See the Trade Audit influencer Rankings
See the Trade Audit Influencer Rankings
</a>
</div>
18 changes: 11 additions & 7 deletions _pages/rankings.html
Original file line number Diff line number Diff line change
Expand Up @@ -198,22 +198,26 @@ <h5 class="card-title">${this.profileTitle(item)}</h5>
</div>
</div>
<div style="
display:flex;
align-items:center;
border:1px solid var(--bs-list-group-border-color);
display: flex;
align-items: center;
border: 1px solid var(--bs-list-group-border-color);
border-radius: 10px;
background-color: blanchedalmond;
padding-top: 4px;
margin-top: 4px;
margin: 4px 0px;
">
${a}${this.profileTypeImage(item, true)}${a != null ? html`</a>` : null}
<div class="card-text text-end" style="flex-grow:1;font-weight:bold;margin-right:10px;">
${tradeCount} Trade${tradeCount == 1 ? '' : 's'}<br>
${ratedPercent == 0 ? 'Zero Rated' : (ratedPercent == 100 ? 'All Rated' : (100 - ratedPercent) + '% Unrated')}
</div>
<pie-chart size="${height}" positive="${positivePercent}" negative="${negativePercent}"></pie-chart>
<pie-chart
size="${height}"
positive="${positivePercent}"
negative="${negativePercent}"
style="padding-top: 4px;padding-right: 4px;
"></pie-chart>
</div>
<div style="line-height:1.8;" class="card-text text-end">
<div style="line-height:1.8;padding:0px 6px;" class="card-text text-end">
${item.stocks.map(
(stock) => {
const selected = this.selectedStockItem != null &&
Expand Down

0 comments on commit d411b5f

Please sign in to comment.