Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/components/index-page/data-colocation/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ import {
import { Pre } from "@/components/pre"
import { SectionLabel } from "@/app/conf/_design-system/section-label"
import InfoIcon from "@/app/conf/_design-system/pixelarticons/info.svg?svgr"
import { useOnClickOutside } from "@/app/conf/_design-system/utils/useOnClickOutside"
import { isSpanElement } from "@/app/conf/_design-system/utils/isSpanElement"

import { ComponentTree } from "./component-tree"
import { FriendList } from "./friend-list"

import json from "./data-colocation.json"
import Query from "./data-colocation.mdx"
import "./data-colocation.css"
import { useOnClickOutside } from "@/app/conf/_design-system/utils/useOnClickOutside"
import { isSpanElement } from "@/app/conf/_design-system/utils/isSpanElement"

const highlightedFragments = {
GetFriendList: 1,
Expand Down
9 changes: 9 additions & 0 deletions src/components/index-page/what-is-graphql/wires.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -85,3 +85,12 @@
transform: rotateX(-90deg) translateY(60px) translateZ(150px);
}
}

@keyframes query-exit-sm {
from {
transform: rotateY(0deg) translateX(0px) translateZ(150px);
}
to {
transform: rotateY(90deg) translateX(60px) translateZ(150px);
}
}
Loading