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

bugfix(dataspace): fix background color #253

Merged
merged 3 commits into from
Sep 11, 2023
Merged
Show file tree
Hide file tree
Changes from 2 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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
- Enable search & filter
- Serview Overview
- Added Sub menu for active services in service overview
- Data Space
- Last section background color issue

## 1.6.0

Expand Down
4 changes: 2 additions & 2 deletions DEPENDENCIES
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ npm/npmjs/-/fs-monkey/1.0.4, Unlicense AND (ISC AND MIT), approved, #2964
npm/npmjs/-/fs.realpath/1.0.0, ISC, approved, clearlydefined
npm/npmjs/-/fsevents/2.3.2, MIT, approved, #2967
npm/npmjs/-/function-bind/1.1.1, MIT, approved, clearlydefined
npm/npmjs/-/function.prototype.name/1.1.5, MIT, approved, clearlydefined
npm/npmjs/-/function.prototype.name/1.1.5, MIT, approved, #10255
npm/npmjs/-/functions-have-names/1.2.3, MIT, approved, clearlydefined
npm/npmjs/-/gensync/1.0.0-beta.2, MIT, approved, clearlydefined
npm/npmjs/-/get-caller-file/2.0.5, ISC, approved, clearlydefined
Expand Down Expand Up @@ -782,7 +782,7 @@ npm/npmjs/-/rimraf/3.0.2, ISC, approved, clearlydefined
npm/npmjs/-/rollup-plugin-terser/7.0.2, MIT, approved, clearlydefined
npm/npmjs/-/rollup/2.79.1, MIT, approved, clearlydefined
npm/npmjs/-/run-parallel/1.2.0, MIT, approved, clearlydefined
npm/npmjs/-/safe-array-concat/1.0.0, MIT, approved, clearlydefined
npm/npmjs/-/safe-array-concat/1.0.0, MIT, approved, #10335
npm/npmjs/-/safe-buffer/5.1.2, MIT, approved, clearlydefined
npm/npmjs/-/safe-buffer/5.2.1, MIT, approved, clearlydefined
npm/npmjs/-/safe-regex-test/1.0.0, MIT, approved, clearlydefined
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,10 @@
.rightAligned .title {
margin-bottom: 20px;
}

.sectionContainer:last-child {
padding-bottom: 40px;
}
}

//tab layout
Expand Down Expand Up @@ -298,6 +302,10 @@
.titleWithIcon button {
display: none;
}

.sectionContainer:last-child {
padding-bottom: 20px;
}
}

//mobile layout
Expand Down Expand Up @@ -440,6 +448,10 @@
.titleWithIcon button {
display: block;
}

.sectionContainer:last-child {
padding-bottom: 20px;
}
}

.readMoreStyle {
Expand Down