Skip to content

Commit

Permalink
Merge pull request #112 from eclipse-tractusx/fix/misspelled-css
Browse files Browse the repository at this point in the history
fix(css): fix misspelled properties
  • Loading branch information
oyo authored Mar 11, 2024
2 parents 2217436 + b005ff8 commit 591736f
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 2.1.39

- Fix warning about misspelled css property

## 2.1.38

- UI updates in stepper and dialog
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/components/content/Cards/Card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion src/components/content/Cards/CardDecision.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export const CardDecision = ({
<Box
sx={{
display: 'flex',
'-ms-flex-wrap': 'wrap',
msFlexWrap: 'wrap',
flexWrap: 'wrap',
justifyContent: 'center',
marginRight: '-10px',
Expand Down
2 changes: 1 addition & 1 deletion src/components/content/Cards/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ export const Cards = ({
<Box
sx={{
display: 'flex',
'-ms-flex-wrap': 'wrap',
msFlexWrap: 'wrap',
flexWrap: 'wrap',
marginRight: '-10px',
marginLeft: '-10px',
Expand Down

0 comments on commit 591736f

Please sign in to comment.