diff --git a/app/futbin/futbin-prices.js b/app/futbin/futbin-prices.js index 770b41d..846ff63 100644 --- a/app/futbin/futbin-prices.js +++ b/app/futbin/futbin-prices.js @@ -179,11 +179,21 @@ export class FutbinPrices extends BaseScript { $('.secondary.player-stats-data-component').css('float', 'left'); targetForButton = target.find('.auction'); targetForButton.show(); - targetForButton.prepend(`
${futbinText}(${futbinData[playerId].prices[platform].updated})${futbinData[playerId].prices[platform].LCPrice}
`); + targetForButton.prepend(` +
+ ${futbinText} + ${futbinData[playerId].prices[platform].LCPrice} + ${futbinData[playerId].prices[platform].updated} +
`); break; case 'SearchResults': targetForButton = target.find('.auctionValue').parent(); - targetForButton.prepend(`
${futbinText}(${futbinData[playerId].prices[platform].updated})${futbinData[playerId].prices[platform].LCPrice}
`); + targetForButton.prepend(` +
+ ${futbinText} + ${futbinData[playerId].prices[platform].LCPrice} + ${futbinData[playerId].prices[platform].updated} +
`); break; default: // no need to do anything diff --git a/app/index.scss b/app/index.scss index f55791f..99eba55 100644 --- a/app/index.scss +++ b/app/index.scss @@ -8,4 +8,13 @@ max-height: 100%; } } +} + +.listFUTItem .entityContainer .name.untradeable { + display: block; + + &::before { + position: relative; + padding-right: 10px; + } } \ No newline at end of file