Skip to content

Commit

Permalink
change color
Browse files Browse the repository at this point in the history
  • Loading branch information
daoauth committed Jan 8, 2025
1 parent 59dc8fc commit 0ac0d93
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions packages/example/src/components/DragAndDrop.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,16 +56,16 @@ export const DragAndDrop = ({
left: 0,
width: '100vw',
height: '100vh',
backgroundColor: 'rgba(0, 0, 0, 0.8)',
backgroundColor: '#011829',
color: 'white',
display: 'flex',
flexDirection: 'column',
justifyContent: 'center',
alignItems: 'center',
zIndex: 9999, // 최상위 레이어
zIndex: 9999,
fontSize: '24px',
textAlign: 'center',
userSelect: 'none', // 텍스트 선택 방지
userSelect: 'none',
transition: 'opacity 0.3s ease',
}}
>
Expand Down
2 changes: 1 addition & 1 deletion packages/example/src/pages/editor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export const Editor = () => {
style={{
width: '100vw',
height: '100vh',
backgroundColor: 'black',
backgroundColor: '#011829',
display: 'flex',
justifyContent: 'center',
alignItems: 'center',
Expand Down

0 comments on commit 0ac0d93

Please sign in to comment.