Skip to content

Commit

Permalink
fix: use background-color grey200 everywhere
Browse files Browse the repository at this point in the history
  • Loading branch information
HendrikThePendric committed Jan 7, 2025
1 parent 0193dca commit 68ecbc0
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/pages/print/styles/PrintDashboard.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
}

.wrapper {
background-color: #f4f6f8;
background-color: var(--colors-grey200);
padding-inline-start: 44px;
overflow-y: auto;
}
Expand Down
2 changes: 1 addition & 1 deletion src/pages/print/styles/PrintLayoutDashboard.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
}

.wrapper {
background-color: #f4f6f8;
background-color: var(--colors-grey200);
padding-inline-start: 44px;
overflow-y: auto;
}
Expand Down
2 changes: 1 addition & 1 deletion src/pages/print/styles/print.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ header.hidden {
inline-size: calc(var(--a4-landscape-width-px) + 18px) !important;
border: none !important;
box-shadow: none !important;
background-color: #f4f6f8;
background-color: var(--colors-grey200);
}

.react-grid-item.PAGEBREAK::before {
Expand Down
3 changes: 2 additions & 1 deletion src/pages/view/styles/ItemGrid.module.css
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
.slideshowContainer {
background-color: #f4f6f8;
background-color: var(--colors-grey200);
block-size: 100vh;
}
.grid {
margin-block-start: var(--spacers-dp8);
background-color: var(--colors-grey200);
}

/* react-grid-layout uses width and height instead
Expand Down

0 comments on commit 68ecbc0

Please sign in to comment.