Skip to content

Commit

Permalink
Make sure panels have a higher z-index than the editor
Browse files Browse the repository at this point in the history
FIX: Fix an issue where in some layouts editor content would be drawn on top
of panel elements.
  • Loading branch information
marijnh committed Aug 11, 2024
1 parent 5d7dbe6 commit 228bab7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,8 @@ export const baseTheme = buildTheme("." + baseThemeID, {
boxSizing: "border-box",
position: "sticky",
left: 0,
right: 0
right: 0,
zIndex: 300
},
"&light .cm-panels": {
backgroundColor: "#f5f5f5",
Expand Down

0 comments on commit 228bab7

Please sign in to comment.