diff --git a/CHANGELOG.md b/CHANGELOG.md index b03fe379..0364ec52 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 2.1.39 + +- Fix warning about misspelled css property + ## 2.1.38 - UI updates in stepper and dialog diff --git a/package.json b/package.json index 1d3fab2c..67b3b6ef 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@catena-x/portal-shared-components", - "version": "2.1.38", + "version": "2.1.39", "description": "Catena-X Portal Shared Components", "author": "Catena-X Contributors", "license": "Apache-2.0", diff --git a/src/components/content/Cards/Card.tsx b/src/components/content/Cards/Card.tsx index 6a92230f..52d29d6c 100644 --- a/src/components/content/Cards/Card.tsx +++ b/src/components/content/Cards/Card.tsx @@ -258,7 +258,7 @@ export const Card = ({ textAlign: 'center', textDecoration: 'none', padding: '50px 90px 20px 90px', - '-webkit-transform': 'rotate(45deg)', + transform: 'rotate(45deg)', zIndex: 10, background: subscriptionStatus?.toLowerCase() === 'pending' diff --git a/src/components/content/Cards/CardDecision.tsx b/src/components/content/Cards/CardDecision.tsx index 02590b56..baf8bbc0 100644 --- a/src/components/content/Cards/CardDecision.tsx +++ b/src/components/content/Cards/CardDecision.tsx @@ -60,7 +60,7 @@ export const CardDecision = ({