We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ebe7c4 commit 50135ffCopy full SHA for 50135ff
CHANGELOG.md
@@ -9,6 +9,12 @@ See [GitHub releases](https://github.com/mll-lab/laravel-graphiql/releases).
9
10
## Unreleased
11
12
+## v4.0.2
13
+
14
+### Fixed
15
16
+- Allow scrolling in GraphiQL Explorer plugin
17
18
## v4.0.1
19
20
### Fixed
views/index.blade.php
@@ -25,6 +25,11 @@
25
justify-content: center;
26
font-size: 4rem;
27
}
28
29
+ .docExplorerWrap {
30
+ /* Allow scrolling, see https://github.com/graphql/graphiql/issues/3098. */
31
+ overflow: auto !important;
32
+ }
33
</style>
34
<script src="{{ GraphiQLAsset::reactJS() }}"></script>
35
<script src="{{ GraphiQLAsset::reactDOMJS() }}"></script>
0 commit comments