Skip to content

Commit 9d86e0e

Browse files
enforce unique node.data.id constraint
1 parent 5801c83 commit 9d86e0e

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

docs/guide/index.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -198,13 +198,13 @@ function DiffViewer({ diff }: { diff: string }) {
198198
}
199199

200200
/* Only these selectors needed for diff highlighting */
201-
[data-diff-status='added'] {
201+
[data-diff-status="added"] {
202202
color: #22c55e;
203203
}
204-
[data-diff-status='modified'] {
204+
[data-diff-status="modified"] {
205205
color: #f59e0b;
206206
}
207-
[data-diff-status='removed'] {
207+
[data-diff-status="removed"] {
208208
color: #ef4444;
209209
}
210210
```
@@ -224,7 +224,7 @@ function DiffViewer({ diff }: { diff: string }) {
224224
line-height: 1.4;
225225
}
226226
227-
/* Only these selectors needed for diff highlighting */
227+
/_ Only these selectors needed for diff highlighting _/
228228
[data-diff-status='added'] { color: #22c55e }
229229
[data-diff-status='modified'] { color: #f59e0b }
230230
[data-diff-status='removed'] { color: #ef4444 }`}

0 commit comments

Comments
 (0)