make the names on the draft board timeline black
Browse files- index.html +2 -2
index.html
CHANGED
|
@@ -781,9 +781,9 @@ Captain Draft Value % (Division 2)
|
|
| 781 |
|
| 782 |
chip.innerHTML = `
|
| 783 |
<div class="text-xs text-gray-500">Pick ${pick.pick}</div>
|
| 784 |
-
<div class="font-semibold text-sm mt-1">${pick.player}</div>
|
| 785 |
<div class="text-xs ${pick.rating ? 'text-gray-700' : 'text-gray-400'} mt-1">
|
| 786 |
-
|
| 787 |
</div>
|
| 788 |
`;
|
| 789 |
|
|
|
|
| 781 |
|
| 782 |
chip.innerHTML = `
|
| 783 |
<div class="text-xs text-gray-500">Pick ${pick.pick}</div>
|
| 784 |
+
<div class="font-semibold text-sm mt-1 text-black">${pick.player}</div>
|
| 785 |
<div class="text-xs ${pick.rating ? 'text-gray-700' : 'text-gray-400'} mt-1">
|
| 786 |
+
${pick.rating ? `Rating: ${pick.rating}` : 'No rating'}
|
| 787 |
</div>
|
| 788 |
`;
|
| 789 |
|