From 8ea19ce5f78a7ba66f625efa92e115655bac4751 Mon Sep 17 00:00:00 2001 From: Lukas Haase <lukas.haase@mni.thm.de> Date: Sat, 18 Jul 2020 10:37:11 +0200 Subject: [PATCH] change mobile standard theme to light theme --- src/app/components/shared/footer/footer.component.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/components/shared/footer/footer.component.ts b/src/app/components/shared/footer/footer.component.ts index 8516068a7..c754f14c4 100644 --- a/src/app/components/shared/footer/footer.component.ts +++ b/src/app/components/shared/footer/footer.component.ts @@ -53,8 +53,8 @@ export class FooterComponent implements OnInit { this.deviceType = localStorage.getItem('deviceType'); if (!this.themeService.getThemeByKey(this.themeClass) || !this.themeService.getTheme()['source']['_value']) { if (this.deviceType === 'mobile') { - this.themeService.activate('dark'); - this.themeClass = 'dark'; + this.themeService.activate('arsnova'); + this.themeClass = 'arsnova'; } else { this.themeService.activate('arsnova'); this.themeClass = 'arsnova'; -- GitLab