diff --git a/angular.json b/angular.json index 07281f93..0cb796cd 100644 --- a/angular.json +++ b/angular.json @@ -45,6 +45,8 @@ "includePaths": ["src/@fuse/styles"] }, "styles": [ + "src/styles/splash-screen.css", + "src/styles/inter.css", "src/@fuse/styles/tailwind.scss", "src/@fuse/styles/themes.scss", "src/styles/vendors.scss", diff --git a/src/index.html b/src/index.html index 72ca7ef3..6de1e20e 100644 --- a/src/index.html +++ b/src/index.html @@ -23,9 +23,7 @@ - - - - - diff --git a/public/fonts/inter/inter.css b/src/styles/inter.css similarity index 61% rename from public/fonts/inter/inter.css rename to src/styles/inter.css index 3294b018..c7d9a7f3 100644 --- a/public/fonts/inter/inter.css +++ b/src/styles/inter.css @@ -4,7 +4,8 @@ font-display: swap; font-style: normal; font-named-instance: 'Regular'; - src: url("Inter-roman.var.woff2?v=3.18") format("woff2"); + src: url('../../public/fonts/inter/Inter-roman.var.woff2?v=3.18') + format('woff2'); } @font-face { @@ -13,5 +14,6 @@ font-display: swap; font-style: italic; font-named-instance: 'Italic'; - src: url("Inter-italic.var.woff2?v=3.18") format("woff2"); + src: url('../../public/fonts/inter/Inter-italic.var.woff2?v=3.18') + format('woff2'); } diff --git a/public/styles/splash-screen.css b/src/styles/splash-screen.css similarity index 100% rename from public/styles/splash-screen.css rename to src/styles/splash-screen.css