Skip to content

Commit

Permalink
Merge pull request #76 from perimetre/6.0.1
Browse files Browse the repository at this point in the history
6.0.1
  • Loading branch information
AssisrMatheus authored Jul 19, 2022
2 parents ee161c6 + 46c2b09 commit 6cc72f7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed

## [6.0.1] 2022-07-19

### Fixed

- Remove width/height classes from horizontal resizeable panel

## [6.0.0] 2022-07-14

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@perimetre/ui",
"description": "A component library made by @perimetre",
"version": "6.0.0",
"version": "6.0.1",
"repository": {
"type": "git",
"url": "git+https://github.com/perimetre/ui.git"
Expand Down
2 changes: 1 addition & 1 deletion src/components/HorizontalResizeablePanel/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ export const HorizontalResizeablePanel: React.FC<HorizontalResizeablePanelProps>
}, []);

return (
<div {...props} className={classNames('relative h-full w-full', props.className)} ref={ref}>
<div {...props} className={classNames('relative', props.className)} ref={ref}>
{resizeLeft && (
<button
className="absolute h-full inset-y-0 w-2 cursor-col-resize"
Expand Down

0 comments on commit 6cc72f7

Please sign in to comment.