Skip to content

Commit

Permalink
updated conduction/component package
Browse files Browse the repository at this point in the history
  • Loading branch information
remko48 committed Dec 18, 2023
1 parent 6f330f0 commit 70faafc
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 7 deletions.
10 changes: 5 additions & 5 deletions pwa/package-lock.json

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

2 changes: 1 addition & 1 deletion pwa/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"prepare": "cd .. && husky install"
},
"dependencies": {
"@conduction/components": "2.2.36",
"@conduction/components": "2.2.41",
"@conduction/theme": "1.1.1",
"@fortawesome/fontawesome-svg-core": "^6.5.0",
"@fortawesome/free-brands-svg-icons": "6.5.0",
Expand Down
2 changes: 1 addition & 1 deletion pwa/src/hooks/useEnvironment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export const useEnvironment = () => {
const themeSwitcherMiddleware = () => {
switch (window.location.hostname) {
case "koophulpje.nl":
// case "localhost": // development purposes
case "localhost": // development purposes
window.sessionStorage.setItem("SHOW_THEME_SWITCHER", "true");
break;
}
Expand Down
11 changes: 11 additions & 0 deletions pwa/src/templates/templateParts/footer/FooterTemplate.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,17 @@
padding-inline-end: var(--utrecht-page-margin-inline-end);
}

.container > * {
font-size: var(
--utrecht-page-footer-font-size,
var(--utrecht-document-font-size)
);
font-family: var(
--utrecht-page-footer-font-family,
var(--utrecht-document-font-family)
);
}

.footer {
display: flex;
align-items: center;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@

.tableBody {
border: var(--utrecht-table-body-border);
border-block-end: var(--utrecht-table-body-border-block-end-width) solid
var(--utrecht-table-body-border-block-end-color);
}

.tableBody .tableRow:nth-child(odd) {
Expand Down

0 comments on commit 70faafc

Please sign in to comment.