|
7 | 7 | {% block content %}
|
8 | 8 | {% include "includes/sidenav.html" %}
|
9 | 9 | {% 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"> |
11 | 11 | <table class="w-full text-lg text-left text-gray-500 dark:text-gray-400 main_table"
|
12 | 12 | id="userStatsTable">
|
13 | 13 | <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 | 18 | </thead>
|
19 | 19 | <tbody>
|
20 | 20 | {% 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"> |
22 | 22 | <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"> |
24 | 24 | {{ username }}
|
25 | 25 | </th>
|
26 | 26 | <td class="py-4 px-6">
|
|
29 | 29 | </td>
|
30 | 30 | </tr>
|
31 | 31 | {% empty %}
|
32 |
| - <tr class="bg-white dark:bg-[#f7f7f7]"> |
| 32 | + <tr class="bg-white "> |
33 | 33 | <td colspan="2" class="py-4 px-6 text-center">No activity found.</td>
|
34 | 34 | </tr>
|
35 | 35 | {% endfor %}
|
36 | 36 | </tbody>
|
37 | 37 | </table>
|
38 | 38 | </div>
|
39 | 39 | {% 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"> |
41 | 41 | <table class="w-full text-lg text-left text-gray-500 dark:text-gray-400 main_table"
|
42 | 42 | id="userStatsTable">
|
43 | 43 | <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 | 55 | {% for user, stats in user_stats.items %}
|
56 | 56 | <tr class="bg-[#1d1d1e] border-b dark:bg-white dark:border-gray-700 hover:bg-gray-50 dark:hover:bg-gray-600">
|
57 | 57 | <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"> |
59 | 59 | {{ user }}
|
60 | 60 | </th>
|
61 | 61 | <td class="py-4 px-6 font-medium text-gray-900 whitespace-nowrap dark:text-white">
|
|
0 commit comments