Browse Source

leaderboard and history size fixed

master
nicolas-arnaud 2 years ago
parent
commit
710e3189cf
  1. 9
      front/volume/src/components/Leaderboard.svelte
  2. 10
      front/volume/src/components/MatchHistory.svelte

9
front/volume/src/components/Leaderboard.svelte

@ -67,16 +67,15 @@
} }
.history { .history {
background-color: #343a40; background-color: #343A40;
border: 1px solid #198754; border: 1px solid #198754;
border-radius: 5px; border-radius: 5px;
padding: 1rem; padding: 1rem;
width: 300px; width: 80%;
display: flex;
justify-content: center; justify-content: center;
max-height: 500px; max-height: 500px;
overflow-y: scroll; overflow: auto;
color: #e8e6e3; color: #E8E6E3;
} }
td { td {

10
front/volume/src/components/MatchHistory.svelte

@ -114,17 +114,17 @@
align-items: center; align-items: center;
} }
.history { .history {
background-color: #343a40; background-color: #343A40;
border: 1px solid #198754; border: 1px solid #198754;
border-radius: 5px; border-radius: 5px;
padding: 1rem; padding: 1rem;
width: 300px; width: 80%;
display: flex;
justify-content: center; justify-content: center;
max-height: 500px; max-height: 500px;
overflow-y: scroll; overflow: auto;
color: #e8e6e3; color: #E8E6E3;
} }
td { td {

Loading…
Cancel
Save