Skip to content

Commit 8655478

Browse files
committed
Tweak styles
1 parent 65d09f2 commit 8655478

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

src/components/index-page/what-is-graphql/api-gateway-query.mdx

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
```graphql
2-
{
3-
project(name: "GraphQL") {
4-
tagline
5-
contributors {
6-
name
2+
query getCity($city: String) {
3+
cities(name: $city) {
4+
population
5+
weather {
6+
temperature
7+
precipitation
78
}
89
}
910
}

src/components/index-page/what-is-graphql/wires.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -493,6 +493,8 @@ export function Wires({ className }: { className?: string }) {
493493
return () => animate?.removeEventListener("repeatEvent", inc)
494494
}, [])
495495

496+
// todo: highlight the lines in step 3
497+
496498
return (
497499
<div className={clsx(className, "relative", classes.wires)}>
498500
<svg

0 commit comments

Comments
 (0)