Skip to content

Commit 7de6098

Browse files
committed
fix: styling issue on maps and sets
1 parent 3846b11 commit 7de6098

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

_fresh.zip

23 Bytes
Binary file not shown.

components/KvValue.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ export function KvValue(
7272
</thead>
7373
<tbody>
7474
{value.value.map(([key, value]) => (
75-
<tr class="odd:bg-gray-50 dark:bg-gray-900">
75+
<tr class="odd:bg-gray-50 odd:dark:bg-gray-900">
7676
<td>
7777
<pre><code>{JSON.stringify(key, undefined, " ")}</code></pre>
7878
</td>
@@ -108,7 +108,7 @@ export function KvValue(
108108
</thead>
109109
<tbody>
110110
{value.value.map((item) => (
111-
<tr class="odd:bg-gray-50 dark:bg-gray-900">
111+
<tr class="odd:bg-gray-50 odd:dark:bg-gray-900">
112112
<td>
113113
<pre><code>{JSON.stringify(item, undefined, " ")}</code></pre>
114114
</td>

0 commit comments

Comments
 (0)