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

Feature/#270/Battery passport v5 #252

Open
wants to merge 4 commits into
base: develop
Choose a base branch
from
Open
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
15 changes: 8 additions & 7 deletions dpp-frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion dpp-frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"@popperjs/core": "^2.11.2",
"@vitejs/plugin-vue": "^4.0.0",
"axios": ">=1.6.7",
"chart.js": "^4.4.2",
"clipboard": "^2.0.11",
"core-js": "^3.8.3",
"crypto-js": "^4.2.0",
Expand All @@ -27,7 +28,7 @@
"vite": ">=4.5.2",
"vite-plugin-vuetify": "^1.0.2",
"vue": "^3.2.47",
"vue-chartjs": "^5.3.0",
"vue-chartjs": "^5.3.1",
"vue-i18n": "9.2.2",
"vue-router": "^4.0.13",
"vue3-json-viewer": "^2.2.2",
Expand Down
214 changes: 107 additions & 107 deletions dpp-frontend/src/assets/styles/components/passport/sections.scss
Original file line number Diff line number Diff line change
@@ -1,107 +1,107 @@
/**
* Tractus-X - Digital Product Passport Application
*
* Copyright (c) 2022, 2024 BASF SE, BMW AG, Henkel AG & Co. KGaA
* Copyright (c) 2022, 2024 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Apache License, Version 2.0 which is available at
* https://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
* either express or implied. See the
* License for the specific language govern in permissions and limitations
* under the License.
*
* SPDX-License-Identifier: Apache-2.0
*/

.section {
display: flex;
.full-width {
width: 100% !important;
}

.info-bar {
padding: 10px;
font-weight: 600;
color: #fff;
margin: -16px 36px 18px 36px;
}

.element-chart-label {
font-size: 14px;
font-weight: 500;
margin: 0 0 6px 8px;
min-height: 20px;
}

.sub-section-container {
display: flex;
flex-wrap: wrap;
border-bottom: solid 1px #edefe5;
}

.two-third-width {
width: 66% !important;
}

.section-content {
width: 100%;
border: solid 1px #b3cb2d;
border-radius: 0 0 4px 4px;
background-color: #fff;
margin-bottom: 50px;
}

.list-container {
width: 33%;
padding: 0 0 22px 40px;
}

.list-label {
padding: 22px 0 10px 0;
font-size: 12px;
color: #777777;
}

ul {
display: flex;
flex-direction: column;
padding: 0;
}

li {
margin-left: 20px;
font-weight: bold;
}

.sub-title {
font-weight: bold;
font-size: 20px;
color: #c6cca3;
}

.container-width-80 {
width: 80%;
}
.container-width-50 {
width: 50%;
}
}
@media (max-width: 960px) {
.section {
flex-direction: column;
.container-width-80 {
width: 100%;
}
.container-width-50 {
width: 100%;
}
}
}
/**
* Tractus-X - Digital Product Passport Application
*
* Copyright (c) 2022, 2024 BASF SE, BMW AG, Henkel AG & Co. KGaA
* Copyright (c) 2022, 2024 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Apache License, Version 2.0 which is available at
* https://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
* either express or implied. See the
* License for the specific language govern in permissions and limitations
* under the License.
*
* SPDX-License-Identifier: Apache-2.0
*/
.section {
display: flex;
.full-width {
width: 100% !important;
}
.info-bar {
padding: 10px;
font-weight: 600;
color: #fff;
margin: -16px 36px 18px 36px;
}
.element-chart-label {
font-size: 14px;
font-weight: 600;
margin: 0 0 6px 8px;
min-height: 20px;
}
.sub-section-container {
display: flex;
flex-wrap: wrap;
border-bottom: solid 1px #edefe5;
}
.two-third-width {
width: 66% !important;
}
.section-content {
width: 100%;
border: solid 1px #b3cb2d;
border-radius: 0 0 4px 4px;
background-color: #fff;
margin-bottom: 50px;
}
.list-container {
width: 33%;
padding: 0 0 22px 40px;
}
.list-label {
padding: 22px 0 10px 0;
font-size: 12px;
color: #777777;
}
ul {
display: flex;
flex-direction: column;
padding: 0;
}
li {
margin-left: 20px;
font-weight: bold;
}
.sub-title {
font-weight: bold;
font-size: 20px;
color: #c6cca3;
}
.container-width-80 {
width: 80%;
}
.container-width-50 {
width: 50%;
}
}
@media (max-width: 960px) {
.section {
flex-direction: column;
.container-width-80 {
width: 100%;
}
.container-width-50 {
width: 100%;
}
}
}
Loading