Skip to content

Commit

Permalink
Merge pull request #79 from perimetre/7.1.1
Browse files Browse the repository at this point in the history
7.1.1
  • Loading branch information
dgonzalez-perimetre authored Aug 3, 2022
2 parents 3d90b87 + d1915c4 commit be701e2
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 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

## [7.1.1] 2022-08-03

### Fixed

- Add transition to hover state

## [7.1.0] 2022-08-03

### 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": "7.1.0",
"version": "7.1.1",
"repository": {
"type": "git",
"url": "git+https://github.com/perimetre/ui.git"
Expand Down
4 changes: 2 additions & 2 deletions src/components/BaseCard/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export type BaseCardProps = {
};

/**
* A Percentage Circle
* A Base Card
*
* @param props The input props
* @param props.imageGradient The gradient background over the image
Expand All @@ -80,7 +80,7 @@ export const BaseCard: React.FC<BaseCardProps> = ({
return (
<div
className={classnames(
'pui-baseCard',
'pui-baseCard transition-all',
{ 'hover:border-pui-primary hover:shadow-lg hover:cursor-pointer': hoverState },
className
)}
Expand Down

0 comments on commit be701e2

Please sign in to comment.