diff --git a/src/game.rs b/src/game.rs index 2610afd..0c5f86c 100644 --- a/src/game.rs +++ b/src/game.rs @@ -87,7 +87,7 @@ async fn retu( ul.iterated { @for rank in highscore { @if rank.show_dots_above { - li.card { + li.no-border { span { "⋮" } @@ -108,7 +108,9 @@ async fn retu( } } } - (t!("amount_participants", amount = amount_participants)) + span.small { + (t!("amount_participants", amount = amount_participants)) + } } }); diff --git a/static/serve/style.css b/static/serve/style.css index e692470..ab65b5e 100644 --- a/static/serve/style.css +++ b/static/serve/style.css @@ -154,6 +154,14 @@ ul.iterated > li { } } +ul.iterated > li.no-border { + border-bottom: 0; +} + +ul.iterated > li.no-border::before { + content: unset; +} + /* Header */ #theme_switcher { width: 20px;