Skip to content

Commit

Permalink
style: improve scrollbar styling on the query editor
Browse files Browse the repository at this point in the history
This changes makes scrollbars in the graphiql editor transparent, so that they look better integrated in the interface
  • Loading branch information
TPXP committed May 20, 2024
1 parent 03ab3a6 commit 2c873de
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .changeset/transparent-scrollbars.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@graphiql/react": patch
"graphiql": patch
---

style: improve scrollbar styling on the query editor
12 changes: 12 additions & 0 deletions packages/graphiql-react/src/style/root.css
Original file line number Diff line number Diff line change
Expand Up @@ -146,3 +146,15 @@ body.graphiql-dark [data-radix-popper-content-wrapper] {
}
}
}

/* Transparent scrollbars, without backgrounds */
.graphiql-container .CodeMirror-hscrollbar,
.graphiql-container .CodeMirror-vscrollbar {
scrollbar-color: #88888888 transparent;
}

/* The little square between H and V scrollbars */
.graphiql-container .CodeMirror-scrollbar-filler,
.graphiql-container .CodeMirror-gutter-filler {
background-color: transparent;
}

0 comments on commit 2c873de

Please sign in to comment.