Skip to content

Commit

Permalink
fix: styling issue on maps and sets
Browse files Browse the repository at this point in the history
  • Loading branch information
kitsonk committed Oct 13, 2024
1 parent 3846b11 commit 7de6098
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Binary file modified _fresh.zip
Binary file not shown.
4 changes: 2 additions & 2 deletions components/KvValue.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export function KvValue(
</thead>
<tbody>
{value.value.map(([key, value]) => (
<tr class="odd:bg-gray-50 dark:bg-gray-900">
<tr class="odd:bg-gray-50 odd:dark:bg-gray-900">
<td>
<pre><code>{JSON.stringify(key, undefined, " ")}</code></pre>
</td>
Expand Down Expand Up @@ -108,7 +108,7 @@ export function KvValue(
</thead>
<tbody>
{value.value.map((item) => (
<tr class="odd:bg-gray-50 dark:bg-gray-900">
<tr class="odd:bg-gray-50 odd:dark:bg-gray-900">
<td>
<pre><code>{JSON.stringify(item, undefined, " ")}</code></pre>
</td>
Expand Down

0 comments on commit 7de6098

Please sign in to comment.