Skip to content

Commit

Permalink
Make the handles big in viewer as well
Browse files Browse the repository at this point in the history
I made this change in DevTools last week but apparently I missed one.

![CleanShot 2021-11-09 at 08 57 27](https://user-images.githubusercontent.com/5903784/140969477-2e554b96-bbbc-4113-b1f3-37eb2a205f2f.png)

![CleanShot 2021-11-09 at 08 56 18](https://user-images.githubusercontent.com/5903784/140969313-a3a64679-692f-47f0-bc20-c7d80054c458.png)
  • Loading branch information
jcmorrow committed Nov 9, 2021
1 parent 751bec0 commit d6220a4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/ui/components/SidePanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ function SidePanel({ selectedPrimaryPanel }: SidePanelProps) {
);
}

return <div className="rounded-lg overflow-hidden w-full mr-2 bg-white">{sidepanel}</div>;
return <div className="rounded-lg overflow-hidden w-full bg-white">{sidepanel}</div>;
}

const connector = connect((state: UIState) => ({
Expand Down
2 changes: 1 addition & 1 deletion src/ui/components/Views/NonDevView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ function NonDevView({ updateTimelineDimensions, sidePanelCollapsed }: PropsFromR
maxSize={sidePanelCollapsed ? "0" : "80%"}
minSize={sidePanelCollapsed ? "0" : "240px"}
onControlledPanelResized={handleMove}
splitterSize={1}
splitterSize={8}
style={{ width: "100%", overflow: "hidden" }}
vert={true}
/>
Expand Down

0 comments on commit d6220a4

Please sign in to comment.