Skip to content

Commit 42c4e6c

Browse files
committed
chore: Remove unused CSS styles in contributor_stats.html
1 parent a4058bf commit 42c4e6c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

website/templates/contributor_stats.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
{% block content %}
88
{% include "includes/sidenav.html" %}
99
{% if today %}
10-
<div class="overflow-x-auto relative shadow-md sm:rounded-lg py-8 px-10 bg-white dark:bg-[#f7f7f7] my-20 mx-8">
10+
<div class="overflow-x-auto relative shadow-md sm:rounded-lg py-8 px-10 bg-white my-20 mx-8">
1111
<table class="w-full text-lg text-left text-gray-500 dark:text-gray-400 main_table"
1212
id="userStatsTable">
1313
<thead class="text-lg text-gray-700 uppercase bg-gray-50 dark:bg-gray-700 dark:text-gray-400 p-5 rounded border-b border-gray-200 dark:border-gray-700">
@@ -18,9 +18,9 @@
1818
</thead>
1919
<tbody>
2020
{% for username, prs in user_stats %}
21-
<tr class="bg-white border-b dark:bg-[#f7f7f7] dark:border-gray-700 hover:bg-gray-50 dark:hover:bg-gray-600">
21+
<tr class="bg-white border-b dark:border-gray-700 hover:bg-gray-50 dark:hover:bg-gray-600">
2222
<th scope="row"
23-
class="py-4 px-6 font-semibold text-white whitespace-nowrap dark:text-gray-900">
23+
class="py-4 px-6 font-semibold text-black whitespace-nowrap dark:text-gray-900">
2424
{{ username }}
2525
</th>
2626
<td class="py-4 px-6">
@@ -29,15 +29,15 @@
2929
</td>
3030
</tr>
3131
{% empty %}
32-
<tr class="bg-white dark:bg-[#f7f7f7]">
32+
<tr class="bg-white ">
3333
<td colspan="2" class="py-4 px-6 text-center">No activity found.</td>
3434
</tr>
3535
{% endfor %}
3636
</tbody>
3737
</table>
3838
</div>
3939
{% else %}
40-
<div class="overflow-x-auto relative shadow-md sm:rounded-lg py-8 px-10 bg-white dark:bg-[#f7f7f7] my-20 mx-8">
40+
<div class="overflow-x-auto relative shadow-md sm:rounded-lg py-8 px-10 bg-white my-20 mx-8">
4141
<table class="w-full text-lg text-left text-gray-500 dark:text-gray-400 main_table"
4242
id="userStatsTable">
4343
<thead class="text-lg text-gray-700 uppercase bg-gray-50 dark:bg-gray-700 dark:text-gray-400 p-5 rounded border-b border-gray-200 dark:border-gray-700">
@@ -55,7 +55,7 @@
5555
{% for user, stats in user_stats.items %}
5656
<tr class="bg-[#1d1d1e] border-b dark:bg-white dark:border-gray-700 hover:bg-gray-50 dark:hover:bg-gray-600">
5757
<th scope="row"
58-
class="py-4 px-6 font-semibold text-white whitespace-nowrap dark:text-gray-900">
58+
class="py-4 px-6 font-semibold text-black whitespace-nowrap dark:text-gray-900">
5959
{{ user }}
6060
</th>
6161
<td class="py-4 px-6 font-medium text-gray-900 whitespace-nowrap dark:text-white">

0 commit comments

Comments
 (0)