Skip to content

Commit

Permalink
Fix z-index of loading screen / menu in editor
Browse files Browse the repository at this point in the history
  • Loading branch information
rossning92 committed Sep 3, 2022
1 parent 72a0543 commit 15a5408
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/editor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ function App() {
<div
style={{
position: 'fixed',
zIndex: '10',
zIndex: 10,
background: 'black',
borderBottom: '1px solid #808080',
left: 0,
Expand Down Expand Up @@ -430,7 +430,7 @@ function App() {
left: 0,
right: 0,
bottom: 0,
zIndex: 11,
zIndex: 5,
display: 'flex',
justifyContent: 'center',
alignItems: 'center',
Expand Down

0 comments on commit 15a5408

Please sign in to comment.