Skip to content

Commit

Permalink
Merge pull request #72 from perimetre/5.2.1
Browse files Browse the repository at this point in the history
5.2.1
  • Loading branch information
dgonzalez-perimetre authored Jul 4, 2022
2 parents b680d22 + a639223 commit b102781
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

## [5.2.1] 2022-07-04

### Fixed

- Added full height to the `HorizontalResizeablePanel` button

## [5.2.0] 2022-06-29

### Added
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": "5.2.0",
"version": "5.2.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 @@ -122,7 +122,7 @@ export const HorizontalResizeablePanel: React.FC<HorizontalResizeablePanelProps>
)}
{resizeRight && (
<button
className="absolute inset-y-0 w-2 cursor-col-resize"
className="absolute h-full inset-y-0 w-2 cursor-col-resize"
style={{ right: '-4px' }}
onMouseDown={(e) => onMove(e, 'right')}
/>
Expand Down

0 comments on commit b102781

Please sign in to comment.