Skip to content

Commit

Permalink
Fix colors behind panel
Browse files Browse the repository at this point in the history
  • Loading branch information
Kitenite committed Aug 25, 2024
1 parent 3f4dd74 commit 6f2699a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/src/routes/project/EditPanel/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const EditPanel = observer(() => {
return (
<div
className={clsx(
'fixed right-0 z-50 top-20 transition-width duration-300 opacity-100 bg-black/80 rounded-tl-xl ',
'fixed right-0 top-20 transition-width duration-300 opacity-100 bg-black/80 rounded-tl-xl ',
editorEngine.mode === EditorMode.INTERACT ? 'hidden' : 'visible',
isOpen ? 'w-60 h-[calc(100vh-5rem)]' : 'w-12 h-12 rounded-l-xl cursor-pointer',
)}
Expand Down
2 changes: 1 addition & 1 deletion app/src/routes/project/LayersPanel/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ const LayersPanel = observer(() => {
return (
<div
className={clsx(
'left-0 z-50 top-20 transition-width duration-300 opacity-100 bg-black/80 rounded-tr-xl',
'left-0 top-20 transition-width duration-300 opacity-100 bg-black/80 rounded-tr-xl',
editorEngine.mode === EditorMode.INTERACT ? 'hidden' : 'visible',
isOpen ? 'w-full h-[calc(100vh-5rem)]' : 'w-12 h-12 rounded-r-xl cursor-pointer',
)}
Expand Down

0 comments on commit 6f2699a

Please sign in to comment.