mirror of
https://github.com/usebruno/bruno.git
synced 2024-11-24 17:03:47 +01:00
fix: fixed graphql docs height overflow (#65)
This commit is contained in:
parent
2393092248
commit
544765af3e
@ -126,7 +126,7 @@ const RequestTabPanel = () => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
return (
|
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">
|
<div className="pt-4 pb-3 px-4">
|
||||||
<QueryUrl item={item} collection={collection} handleRun={handleRun} />
|
<QueryUrl item={item} collection={collection} handleRun={handleRun} />
|
||||||
</div>
|
</div>
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
# bruno-graphql-docs
|
# 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
|
The schema definition for collections
|
||||||
|
|
||||||
|
### Publish to Npm Registry
|
||||||
|
```bash
|
||||||
|
npm publish --access=public
|
||||||
|
```
|
||||||
|
|
||||||
### Collection schema
|
### Collection schema
|
||||||
```bash
|
```bash
|
||||||
id Unique id (when persisted to a db)
|
id Unique id (when persisted to a db)
|
||||||
|
Loading…
Reference in New Issue
Block a user