Skip to content

Commit

Permalink
fix import/export screen
Browse files Browse the repository at this point in the history
  • Loading branch information
allyoucanmap committed Jan 30, 2025
1 parent 999fc93 commit e6b8d62
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions web/client/components/import/dragZone/DragZone.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export default ({
disableClick
ref={onRef}
id="DRAGDROP_IMPORT_ZONE"
style={{ position: "relative", height: '100%', ...style }}
style={{ position: "absolute", top: 0, left: 0, height: '100%', ...style }}
accept={accept}
onDrop={onDrop}
onDragEnter={onDragEnter}
Expand All @@ -40,7 +40,7 @@ export default ({
left: 0,
background: 'rgba(0,0,0,0.75)',
color: '#fff',
zIndex: 2000,
zIndex: 4000,
display: 'flex',
textAlign: 'center'
}}>
Expand Down
2 changes: 1 addition & 1 deletion web/client/themes/default/less/export.less
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
left: 0;
background: rgba(0; 0; 0; 0.75);
color: #fff;
z-index: 2000;
z-index: 4000;
display: flex;
text-align: center;

Expand Down

0 comments on commit e6b8d62

Please sign in to comment.