Skip to content

Commit 3cc9e70

Browse files
authored
Fix resize handle (#779)
1 parent 33fbbb3 commit 3cc9e70

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
3737
- Edit icon not showing in ContextMenu (#720)
3838
- Updated sidebar and file icons to correct size (#720)
3939
- Local docker setup for development (#739)
40-
- Editor height overflow (#771)
40+
- Editor height overflow (#771, #779)
4141

4242
## [0.19.4] - 2023-11-08
4343

src/assets/stylesheets/Project.scss

-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@
8686
.proj-editor-container,
8787
.proj-runner-container {
8888
border-radius: 8px;
89-
overflow: hidden;
9089
}
9190

9291
.proj-editor-container {

src/utils/ResizableWithHandle.js

+3
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,9 @@ const ResizableWithHandle = (props) => {
7474
handleWrapperClass={handleWrapperClass}
7575
onResizeStop={onResizeStop}
7676
size={{ width: width, height: height }}
77+
handleStyles={{
78+
right: { height: "98%", top: "1%" },
79+
}}
7780
{...rest}
7881
>
7982
{children}

0 commit comments

Comments
 (0)