feat(ui): Tricktable

Added a trick-table displaying the players with their won tricks sorted by the person with the most tricks
This commit is contained in:
LQ63
2025-11-09 17:19:17 +01:00
parent a71752df2f
commit c948e5e800
2 changed files with 57 additions and 19 deletions

View File

@@ -209,4 +209,20 @@ body {
color: @color;
font-size: 1.5em;
font-family: Arial, serif;
}
.score-table {
background-color: rgba(255, 255, 255, 0.1);
border-radius: 8px;
padding: 10px;
margin-bottom: 20px;
backdrop-filter: blur(8px);
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.score-header {
font-weight: bold;
color: #ffffff;
border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.score-row {
color: #ffffff;
}