diff --git a/CHANGELOG.md b/CHANGELOG.md index 11ef345ef..cd7039740 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +### Bugfixes + +- **Use Case Participation** + - fixed columns alignment ui issue [#1247](https://github.com/eclipse-tractusx/portal-frontend/pull/1247) + ## 2.3.0-RC1 ### Change diff --git a/src/components/pages/UsecaseParticipation/UsecaseParticipation.scss b/src/components/pages/UsecaseParticipation/UsecaseParticipation.scss index 64f98c3c3..d676765e1 100644 --- a/src/components/pages/UsecaseParticipation/UsecaseParticipation.scss +++ b/src/components/pages/UsecaseParticipation/UsecaseParticipation.scss @@ -68,7 +68,7 @@ padding: 30px; } .useCase-list-main { - max-width: 850px; + max-width: 1200px; width: 100%; margin: 0 auto 50px; .progress-main { @@ -99,6 +99,9 @@ } .credential-list { list-style: none; + .MuiAccordionSummary-root { + padding: 0px 25px 0px 0px; + } .credential-list-item { width: 100%; margin-bottom: 0; diff --git a/src/components/pages/UsecaseParticipation/index.tsx b/src/components/pages/UsecaseParticipation/index.tsx index e348fefc3..a9d730d70 100644 --- a/src/components/pages/UsecaseParticipation/index.tsx +++ b/src/components/pages/UsecaseParticipation/index.tsx @@ -117,7 +117,7 @@ export default function UsecaseParticipation() { : 'N/A'} - {expiryDate.diff(todayDate, 'day') > 0 && ( + {expiryDate.diff(todayDate, 'day') > 0 ? ( + ) : ( +
)}
) @@ -238,7 +240,7 @@ export default function UsecaseParticipation() {