Skip to content

Commit

Permalink
Fix the issue where the left panel in the workspace is covered by the…
Browse files Browse the repository at this point in the history
… menu (#3236)

### Purpose:
In the workspace, when dragging the left panel, it may be covered by the
menu, making it impossible to continue moving. The cause of this issue
is that the z-index of the left panel is not defined.

### Changes:
Add a z-index to the left panel

### Demo:
before:

![image](https://github.com/user-attachments/assets/3cbb6cb9-60b1-4876-9fdd-250da3c92dfd)

after:

![image](https://github.com/user-attachments/assets/95691206-9bb9-4c88-92f4-84e91610e5ed)
  • Loading branch information
GspikeHalo authored Jan 29, 2025
1 parent 3a1c33d commit 2713244
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
width: 100%;
height: 100%;
position: fixed;
z-index: 3;
}

#left-container {
Expand Down

0 comments on commit 2713244

Please sign in to comment.