diff --git a/public/stylesheets/tournament.css b/public/stylesheets/tournament.css index 193f222be9..8b2ae3c71f 100644 --- a/public/stylesheets/tournament.css +++ b/public/stylesheets/tournament.css @@ -173,6 +173,7 @@ div.create_tournament { } #tournament .podium .user_link { font-weight: bold; + letter-spacing: -1px; } #tournament .podium .stats { margin: 0.5em auto 0 auto; diff --git a/ui/tournament/src/view/arena.ts b/ui/tournament/src/view/arena.ts index 36f2097391..3ad689b9f5 100644 --- a/ui/tournament/src/view/arena.ts +++ b/ui/tournament/src/view/arena.ts @@ -1,7 +1,7 @@ import { h } from 'snabbdom' import { VNode } from 'snabbdom/vnode'; import TournamentController from '../ctrl'; -import { player as renderPlayer, ratio2percent, bind, dataIcon } from './util'; +import { player as renderPlayer, ratio2percent, bind, dataIcon, playerName } from './util'; import { MaybeVNodes } from '../interfaces'; import * as button from './button'; import * as pagination from '../pagination'; @@ -45,7 +45,7 @@ function playerTr(ctrl: TournamentController, player) { function podiumUsername(p) { return h('a.text.ulpt.user_link', { attrs: { href: '/@/' + p.name } - }, p.name); + }, playerName(p)); } function podiumStats(p, trans): VNode {