Skip to content

Commit

Permalink
Resize columns to closer match mockup
Browse files Browse the repository at this point in the history
  • Loading branch information
kglovern committed Aug 15, 2024
1 parent b8503a9 commit 14a5d8f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/app/src/routes/index.lazy.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ function Index() {
return (
<>
<div className="flex h-[80%]">
<div className="flex w-2/3">
<div className="flex w-full">
<PrimaryArea />
</div>

<div className="flex w-1/3">
<div className="flex min-w-96 max-w-xs">
<Column />
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/app/src/workspace/PrimaryArea/index.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export const PrimaryArea = () => {
return <div className="border p-3 flex-1 box-border">Vizualizer</div>;
return <div className="border p-3 flex-1">Vizualizer</div>;
};

0 comments on commit 14a5d8f

Please sign in to comment.