diff --git a/_pages/rankings.html b/_pages/rankings.html index 96497f2..58d6424 100644 --- a/_pages/rankings.html +++ b/_pages/rankings.html @@ -183,17 +183,12 @@

Influencer Rankings

if (screen.availWidth < 800) { const height = 50; return html` -
  • -
    +
  • +
    -
    -
    -
    ${this.profileTitle(item)}
    -
    -
    - ${tradeCount} Trade${tradeCount == 1 ? '' : 's'}
    -
    +
    +
    ${this.profileTitle(item)}
    @@ -203,23 +198,28 @@
    ${this.profileTitle(item)}
    -
    +
    ${a}${this.profileTypeImage(item)}${a != null ? html`` : null} -
    - ${item.stocks.map( - (stock) => { - const selected = this.selectedStockItem != null && - this.selectedStockItem.symbol == stock.symbol ? "btn-secondary active" : "btn-outline-secondary"; - return html`` - } - )} +
    +
    + ${tradeCount} Trade${tradeCount == 1 ? '' : 's'}
    +
    +
    + ${item.stocks.map( + (stock) => { + const selected = this.selectedStockItem != null && + this.selectedStockItem.symbol == stock.symbol ? "btn-secondary active" : "btn-outline-secondary"; + return html`` + } + )} +
  • ` } else { const height = this.height ?? 64;