myheats

Live heats, scoring and leaderboard for sport events
git clone https://git.in0rdr.ch/myheats.git
Log | Files | Refs | Pull requests | README | LICENSE

commit 40334ddd2543e6c2f4bf65529eeeaa9e8f03de35
parent 7f4057404dd0d56226e2073ce9bbf2e58abcaef1
Author: Andreas Gruhler <andreas.gruhler@adfinis.com>
Date:   Sun,  6 Oct 2024 21:43:51 +0200

fix: totals

Diffstat:
Msrc/frontend/Leaderboard.jsx | 2+-
Msrc/frontend/css/App.css | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/frontend/Leaderboard.jsx b/src/frontend/Leaderboard.jsx @@ -412,7 +412,7 @@ function Leaderboard({session}) { ))} <td className={details ? 'right' : 'hidden'} data-title='Best'>{i.bestHeat}</td> <td className={details ? 'right' : 'hidden'} data-title='Worst'>{i.worstHeat}</td> - <td className='right' data-title='Total'>{i.sum}</td> + <td className='right total' data-title='Total'>{i.sum}</td> </tr> ))} </tbody> diff --git a/src/frontend/css/App.css b/src/frontend/css/App.css @@ -186,7 +186,7 @@ table.leaderboard:not(.hide-rank) tr td:first-child::before { } /* highlight totals */ -table.leaderboard td:last-child { +td.total { font-weight: bold; }