Skip to content

Commit

Permalink
style: fix colors
Browse files Browse the repository at this point in the history
  • Loading branch information
JaneMoroz committed Sep 1, 2023
1 parent dbb67ef commit 9bbc2a6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/app/myteam/components/TeamRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ interface TeamRowProps {
function TeamRow({ teamMemeber }: TeamRowProps) {
return (
<tr>
<td className="text-[#000000]">{teamMemeber.name}</td>
<td className="text-black">{teamMemeber.name}</td>
<td>{teamMemeber.discordId}</td>
<td>{teamMemeber.averageHour}</td>
<td>{teamMemeber.location}</td>
Expand Down
6 changes: 3 additions & 3 deletions src/app/myteam/components/TeamTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import { TeamRow } from ".";
function TeamTable() {
return (
<div className="overflow-x-auto">
<table className="table bg-[#C4DED2] px-6 py-7 border-separate border-none">
<table className="table px-6 border-separate border-none bg-primary/30 py-7">
{/* head */}
<thead className="text-xl font-semibold text-[#000000] mb-10">
<thead className="mb-10 text-xl font-semibold text-black">
<tr>
<th>Name</th>
<th>Discord ID</th>
Expand All @@ -17,7 +17,7 @@ function TeamTable() {
<th>Position</th>
</tr>
</thead>
<tbody className="text-base font-medium text-[#757575]">
<tbody className="text-base font-medium text-neutral">
{/* rows */}
{teamMembers.map((teamMemeber) => (
<TeamRow key={teamMemeber.id} teamMemeber={teamMemeber} />
Expand Down

0 comments on commit 9bbc2a6

Please sign in to comment.