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

chore: update dpp and dfr render template on mobile UIs #183

Merged
merged 1 commit into from
Dec 16, 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
12 changes: 6 additions & 6 deletions app-config.json

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions packages/components/src/constants/app-config.json

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions packages/mock-app/src/constants/app-config.json

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions packages/mock-app/src/templates/v0.5.0/dfr.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@
align-items: flex-start;
gap: 8px;

min-width: 336px;
min-width: 100%;
padding: 16px 18px 16px 16px;
position: relative;
background-color: var(--white);
Expand Down Expand Up @@ -339,7 +339,8 @@
}

.facility-record .cards-traceability {
display: flex;
display: grid;
grid-template-columns: 1fr auto;
align-items: center;
justify-content: space-between;
padding: 8px 0px;
Expand All @@ -361,7 +362,6 @@
.facility-record .company-name-wrapper {
display: flex;
flex-direction: column;
width: 260px;
align-items: flex-start;
gap: 4px;
}
Expand Down
7 changes: 4 additions & 3 deletions packages/mock-app/src/templates/v0.5.0/dpp.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@
flex-direction: column;
align-items: flex-start;
gap: 8px;
min-width: 336px;
min-width: 100%;
padding: 16px 18px 16px 16px;
position: relative;
background-color: var(--white);
Expand Down Expand Up @@ -563,7 +563,8 @@
}

.cards-traceability {
display: flex;
display: grid;
grid-template-columns: 1fr auto;
align-items: center;
justify-content: space-between;
padding: 8px 0px;
Expand Down Expand Up @@ -624,7 +625,7 @@
.company-name-wrapper {
display: flex;
flex-direction: column;
width: 260px;
width: 100%;
align-items: flex-start;
gap: 4px;
position: relative;
Expand Down
Loading