Skip to content

Commit 1658c18

Browse files
author
FalkWolsky
committed
Fixing overlaping Code Editor Window
1 parent 30afbd5 commit 1658c18

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

client/packages/lowcoder/src/constants/Layers.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
export const Layers = {
22
// new user tutorials
3-
tutorials: 3000,
3+
tutorials: 5000,
44
//
55
videoDialog: 2010,
66
//
7-
codeEditorTooltip: 3000,
7+
codeEditorTooltip: 1000,
88
//
9-
codeEditorPanel: 1100,
9+
codeEditorPanel: 1000,
1010
//
1111
queryResultPanel: 1000,
1212
//
@@ -24,7 +24,7 @@ export const Layers = {
2424
//
2525
helpIcon: 550,
2626
// bottom panel, keep the code completion displayed above the right panel
27-
bottomPanel: 550,
27+
bottomPanel: 450,
2828
// right panel's z-index should be higher than canvas and comps, to make sure the code completion displayed above
2929
rightPanel: 500,
3030
// comp selection wrapper

client/packages/lowcoder/src/pages/editor/codeEditorPanel.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const Wrapper = styled.div`
2222
left: 50%;
2323
border-radius: 8px;
2424
background: #ffffff;
25-
box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
25+
box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.2);
2626
`;
2727
const HeaderWrapper = styled.div`
2828
height: 40px;

0 commit comments

Comments
 (0)