Skip to content

Commit 08193c3

Browse files
committed
fix(*): applying relevant migrations for 22
1 parent e6a2615 commit 08193c3

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

src/app/theming/styles/dark-theme.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ $header-border-color: color($dark-theme-palette, "primary", 600)
5757

5858
// Define dark theme for the paginator
5959
$dark-paginator-theme: paginator-theme(
60-
$text-color: color($dark-theme-palette, "secondary", 700),
61-
$background-color: color($dark-theme-palette, "primary", 500),
60+
$foreground: color($dark-theme-palette, "secondary", 700),
61+
$background: color($dark-theme-palette, "primary", 500),
6262
$border-color: color($dark-theme-palette, "secondary", 500)
6363
);
6464

src/app/theming/styles/themes.scss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -203,14 +203,14 @@ $black-grid-theme: grid-theme(
203203

204204
// Define light theme for the paginator
205205
$light-paginator-theme: paginator-theme(
206-
$background-color:color($light-theme-palette, "primary", 100),
206+
$background:color($light-theme-palette, "primary", 100),
207207
$border-color: color($light-theme-palette, "secondary", 500)
208208
);
209209

210210
// Define dark theme for the paginator
211211
$dark-paginator-theme: paginator-theme(
212-
$text-color: color($dark-theme-palette, "secondary", 700),
213-
$background-color:color($dark-theme-palette, "primary", 500),
212+
$foreground: color($dark-theme-palette, "secondary", 700),
213+
$background:color($dark-theme-palette, "primary", 500),
214214
$border-color: color($dark-theme-palette, "secondary", 500)
215215
);
216216

0 commit comments

Comments
 (0)