Skip to content

Commit

Permalink
fix: query url overflowing (#2804)
Browse files Browse the repository at this point in the history
* fix: query url overflowing

* fix: add margin to save btn instead of singlelineeditor
  • Loading branch information
therealrinku authored Aug 11, 2024
1 parent 7e305be commit 0d3e7ac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ const QueryUrl = ({ item, collection, handleRun }) => {
/>
<div className="flex items-center h-full mr-2 cursor-pointer" id="send-request" onClick={handleRun}>
<div
className="tooltip mr-3"
className="tooltip mx-3"
onClick={(e) => {
e.stopPropagation();
if (!item.draft) return;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ class SingleLineEditor extends Component {

render() {
return (
<div className="flex flex-row justify-between w-full">
<div className="flex flex-row justify-between w-full overflow-x-auto">
<StyledWrapper ref={this.editorRef} className="single-line-editor grow" />
{this.secretEye(this.props.isSecret)}
</div>
Expand Down

0 comments on commit 0d3e7ac

Please sign in to comment.