Skip to content

Commit

Permalink
editorpage
Browse files Browse the repository at this point in the history
  • Loading branch information
Edurz135 committed Aug 3, 2023
1 parent f9a95ad commit b9bbc0b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/Components/MainFlow/MainFlow.component.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ const OverviewFlow = () => {
});

return (
<div className="dndflow" style={{ position: "relative" }}>
<div className="dndflow" style={{ position: "relative", backgroundColor: "#f9e9d1" }}>
<div
style={{
position: "absolute",
Expand Down
12 changes: 7 additions & 5 deletions src/pages/editor/EditorPage.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@

import MainFlow from "../../Components/MainFlow/MainFlow.component";
export default function EditorPage() {
return <div>
Editor
</div>
}
return (
<div style={{width: "100%", height: "100vh"}}>
<MainFlow />
</div>
);
}

0 comments on commit b9bbc0b

Please sign in to comment.