Skip to content

Commit

Permalink
Merge pull request #23 from crow-fox/fix/ColorGridTable
Browse files Browse the repository at this point in the history
行の見出しを上から中央に移動
  • Loading branch information
crow-fox authored Apr 28, 2024
2 parents 1348bc0 + 564e14a commit 7c6180e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/_features/color/ColorGridTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export function ColorGridTable() {
<tbody>
{getObjectKeys(tailwindColors.graded).map((name) => (
<tr key={name}>
<th className=" border border-black px-2 py-2 align-top text-sm">
<th className=" border border-black px-2 py-2 text-sm">
{capitalizeFirstLetter(name)}
</th>
{getObjectKeys(tailwindColors.graded[name]).map((grade) => (
Expand Down

0 comments on commit 7c6180e

Please sign in to comment.