From db05558a5be2853328afa3840305dfd099a2e5c6 Mon Sep 17 00:00:00 2001 From: Nicholas Date: Sat, 18 May 2024 12:24:22 +0200 Subject: [PATCH] bug: image darkens after conversion on mobile devices #73 (#74) --- src/app/app.module.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/app/app.module.ts b/src/app/app.module.ts index a3f5822..6839f70 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -21,7 +21,9 @@ export const translationLoaderFactory = (http: HttpClient) => new TranslateHttpL schemas: [CUSTOM_ELEMENTS_SCHEMA], imports: [ BrowserModule, - IonicModule.forRoot(), + IonicModule.forRoot({ + mode: 'md' // force material UI mode, iOS has not been styled + }), AppRoutingModule, BrowserAnimationsModule, ComponentsModule,