Skip to content

Commit

Permalink
fix: overlaping left split pane (#252)
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-krasn committed May 12, 2020
1 parent c9aa58e commit 2e8c351
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/react/components/pages/editorPage/editorPage.scss
Original file line number Diff line number Diff line change
Expand Up @@ -271,16 +271,16 @@ canvas {
}

.Resizer.vertical {
width: 11px;
margin: 0 -5px;
border-left: 5px solid rgba(255, 255, 255, 0);
border-right: 5px solid rgba(255, 255, 255, 0);
width: 6px;
border-left: 3px solid rgba(255, 255, 255, 0);
border-right: 3px solid rgba(255, 255, 255, 0);
background-color: rgba(255, 255, 255, 0);
cursor: col-resize;
}

.Resizer.vertical:hover {
border-left: 5px solid rgba(0, 0, 0, 0.5);
border-right: 5px solid rgba(0, 0, 0, 0.5);
border-left: 3px solid rgba(0, 0, 0, 0.5);
border-right:3px solid rgba(0, 0, 0, 0.5);
}
.Resizer.disabled {
cursor: not-allowed;
Expand Down

0 comments on commit 2e8c351

Please sign in to comment.