Skip to content

Commit

Permalink
fixed z-index, bandage loading error
Browse files Browse the repository at this point in the history
  • Loading branch information
Andcool-Systems committed Dec 12, 2024
1 parent c9812fd commit 9ffa390
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/app/styles/editor/page.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
border-radius: 10px;
border: 1px var(--main-element-color) solid;
position: relative;
z-index: 1;
z-index: 2;
width: 400px;
height: 500px;
overflow: hidden;
Expand Down Expand Up @@ -95,7 +95,7 @@
position: relative;
top: -10px;
border: 1px var(--main-element-color) solid;
z-index: 0;
z-index: 1;
padding-top: calc(1rem + 10px);
display: flex;
flex-direction: column;
Expand Down
2 changes: 1 addition & 1 deletion src/app/workshop/create/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ const Selector = ({ setTitle, onBandageChange, onChange, heightVal, useOld }: Se
};

const ondrop = (evt: React.DragEvent<HTMLLabelElement>) => {
getData(evt.dataTransfer?.files[0])
useOld ? getDataOld(evt.dataTransfer?.files[0]) : getData(evt.dataTransfer?.files[0])

evt.preventDefault();
containerRef.current.style.borderStyle = "dashed";
Expand Down

0 comments on commit 9ffa390

Please sign in to comment.