forked from extern/bruno
fix: fixed graphql docs height overflow (#65)
This commit is contained in:
parent
2393092248
commit
544765af3e
@ -126,7 +126,7 @@ const RequestTabPanel = () => {
|
||||
};
|
||||
|
||||
return (
|
||||
<StyledWrapper className={`flex flex-col flex-grow ${dragging ? 'dragging' : ''}`}>
|
||||
<StyledWrapper className={`flex flex-col flex-grow relative ${dragging ? 'dragging' : ''}`}>
|
||||
<div className="pt-4 pb-3 px-4">
|
||||
<QueryUrl item={item} collection={collection} handleRun={handleRun} />
|
||||
</div>
|
||||
|
@ -1,3 +1,8 @@
|
||||
# bruno-graphql-docs
|
||||
|
||||
Standalone graphql docs explorer module forked from [graphiql](https://github.com/graphql/graphiql)
|
||||
Standalone graphql docs explorer module forked from [graphiql](https://github.com/graphql/graphiql)
|
||||
|
||||
### Publish to Npm Registry
|
||||
```bash
|
||||
npm publish --access=public
|
||||
```
|
@ -2,6 +2,11 @@
|
||||
|
||||
The schema definition for collections
|
||||
|
||||
### Publish to Npm Registry
|
||||
```bash
|
||||
npm publish --access=public
|
||||
```
|
||||
|
||||
### Collection schema
|
||||
```bash
|
||||
id Unique id (when persisted to a db)
|
||||
|
Loading…
Reference in New Issue
Block a user