From f0b390a73a263ae8ef167564e4f7505f557c76ca Mon Sep 17 00:00:00 2001 From: Brandy Carney Date: Fri, 29 Mar 2024 16:36:34 -0400 Subject: [PATCH] refactor(theming): migrate global files --- core/src/migrated-themes/globals.ionic.scss | 4 ++-- core/src/migrated-themes/globals.ios.scss | 4 ++-- core/src/migrated-themes/globals.md.scss | 4 ++-- core/src/migrated-themes/globals.scss | 6 +++--- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/core/src/migrated-themes/globals.ionic.scss b/core/src/migrated-themes/globals.ionic.scss index ddf316bc2a..51844ff3f0 100644 --- a/core/src/migrated-themes/globals.ionic.scss +++ b/core/src/migrated-themes/globals.ionic.scss @@ -1,6 +1,6 @@ // Global Core -@import "./globals"; +@forward "./globals"; // Global Ionic -@import "./default.ionic"; +@forward "./default.ionic"; diff --git a/core/src/migrated-themes/globals.ios.scss b/core/src/migrated-themes/globals.ios.scss index 43e231db4c..3c9473536b 100644 --- a/core/src/migrated-themes/globals.ios.scss +++ b/core/src/migrated-themes/globals.ios.scss @@ -1,6 +1,6 @@ // Global Core -@import "./globals"; +@forward "./globals"; // Global iOS -@import "./default.ios"; +@forward "./default.ios"; diff --git a/core/src/migrated-themes/globals.md.scss b/core/src/migrated-themes/globals.md.scss index 7b2da89744..db5e560d72 100644 --- a/core/src/migrated-themes/globals.md.scss +++ b/core/src/migrated-themes/globals.md.scss @@ -1,6 +1,6 @@ // Global Core -@import "./globals"; +@forward "./globals"; // Global Material Design -@import "./default.md"; +@forward "./default.md"; diff --git a/core/src/migrated-themes/globals.scss b/core/src/migrated-themes/globals.scss index 2efd1066bb..6e1277ff00 100644 --- a/core/src/migrated-themes/globals.scss +++ b/core/src/migrated-themes/globals.scss @@ -1,12 +1,12 @@ // Global Functions -@import "./functions"; +@forward "./functions"; // Global Mixins -@import "./mixins"; +@forward "./mixins"; // Default Theme -@import "./default"; +@forward "./default"; // Default General