Skip to content

Commit

Permalink
Make tables smaller to fit more data on page
Browse files Browse the repository at this point in the history
  • Loading branch information
aviguptatx committed Mar 12, 2024
1 parent ff1e298 commit 38e87e7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion templates/history.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

<div class="container">
<h1 class="mb-4 text-center">Leaderboard for {{ date }}</h1>
<table class="table table-bordered table-striped">
<table class="table table-bordered table-striped table-sm">
<thead class="table-dark">
<tr>
<th>Rank</th>
Expand Down
2 changes: 1 addition & 1 deletion templates/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ <h1>Leaderboard</h1>
</div>
</div>
<div class="table-responsive">
<table class="table table-bordered table-striped">
<table class="table table-bordered table-striped table-sm">
<thead class="table-dark">
<tr>
<th>Rank</th>
Expand Down
2 changes: 1 addition & 1 deletion templates/today.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

<div class="container">
<h1 class="mb-4 text-center">Today's Leaderboard</h1>
<table class="table table-bordered table-striped">
<table class="table table-bordered table-striped table-sm">
<thead class="table-dark">
<tr>
<th>Rank</th>
Expand Down

0 comments on commit 38e87e7

Please sign in to comment.