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 8355e0a commit 44ec453Copy full SHA for 44ec453
packages/graphql-playground-react/src/components/Playground/DocExplorer/ColumnDoc.tsx
@@ -32,5 +32,6 @@ const Column = styled<ColumnProps, 'div'>('div')`
32
flex-flow: column;
33
padding-bottom: 20px;
34
border-right: 1px solid ${p => p.theme.colours.black10};
35
- overflow: ${p => (p.overflow ? 'hidden scroll' : 'auto auto')};
+ overflow-x: ${p => (p.overflow ? 'hidden' : 'auto')}
36
+ overflow-y: ${p => (p.overflow ? 'scroll' : 'auto')}
37
`
0 commit comments