Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(css): fix misspelled properties #112

Merged
merged 3 commits into from
Mar 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading