Show 100 players by default

This commit is contained in:
Michel ten Voorde
2025-11-06 16:41:03 +01:00
parent a56317fecd
commit 7fd84005f9
2 changed files with 6 additions and 1 deletions

View File

@@ -39,7 +39,8 @@
<tr mat-header-row *matHeaderRowDef="displayedColumns"></tr>
<tr mat-row *matRowDef="let row; columns: displayedColumns;"></tr>
</table>
<mat-paginator [pageSizeOptions]="[10, 20, 50]"
<mat-paginator [pageSizeOptions]="[10, 25, 100]"
[pageSize]="100"
showFirstLastButtons
aria-label="Select page of periodic elements">
</mat-paginator>

View File

@@ -5,3 +5,7 @@ a {
td, th {
background-color: transparent !important;
}
.mat-mdc-row:hover {
background-color: rgba(0, 0, 0, 0.075);
}