Skip to content

Commit

Permalink
Changed table heading to pikachu friendly colour when in light mode
Browse files Browse the repository at this point in the history
  • Loading branch information
lucfercas committed Oct 24, 2024
1 parent 2e820d6 commit d2def47
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/components/Table.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ export function Table({ players, sortBy, showMedals }) {

return (
<div className="relative overflow-y-auto shadow-md sm:rounded-lg max-h-36 my-6">
<table className="w-full text-sm text-center rtl:text-right text-white dark:text-white">
<thead className="sticky top-0 text-md text-white uppercase bg-gray-50 dark:bg-gray-700 dark:text-white">
<table className="w-full text-sm text-center rtl:text-right text-gray-900 dark:text-white">
<thead className="sticky top-0 text-md text-gray-900 uppercase bg-yellow-300 dark:bg-gray-700 dark:text-white">
<tr>
{showMedals && (
<th scope="col" className="px-3 py-2">
Expand Down

0 comments on commit d2def47

Please sign in to comment.