From 2e9c6f5c73909884079165a89478513c5b251a12 Mon Sep 17 00:00:00 2001 From: ThatOneCalculator Date: Mon, 21 Nov 2022 20:03:59 -0800 Subject: [PATCH] more fixes --- gulpfile.js | 1 - packages/client/src/icons.css | 9 +-------- packages/client/src/init.ts | 1 + 3 files changed, 2 insertions(+), 9 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 82c010e6d..86f860e56 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -24,7 +24,6 @@ gulp.task('copy:client:fonts', () => ); gulp.task('copy:client:phosphor', () => - gulp.src('./packages/client/src/icons.css').pipe(gulp.dest('./built/_client_dist_/phosphor/')), gulp.src('./node_modules/phosphor-icons/src/fonts/*').pipe(gulp.dest('./built/_client_dist_/phosphor/')) ); diff --git a/packages/client/src/icons.css b/packages/client/src/icons.css index 194e6cbf0..2af4ccb9c 100644 --- a/packages/client/src/icons.css +++ b/packages/client/src/icons.css @@ -1,12 +1,6 @@ -/*-------------------------------- - -Phosphor Web Font -Generated using nucleoapp.com - --------------------------------- */ @font-face { font-family: "Phosphor"; - src: url("./Phosphor.woff2") format("woff"); + src: url("/assets/phosphor/Phosphor.woff2") format("woff2"); font-weight: normal; font-style: normal; } @@ -23,7 +17,6 @@ Generated using nucleoapp.com font: normal normal normal 1em/1 "Phosphor"; color: inherit; flex-shrink: 0; - speak: none; text-transform: none; text-decoration: inherit; text-align: center; diff --git a/packages/client/src/init.ts b/packages/client/src/init.ts index e4b9d7bb3..1dc22874f 100644 --- a/packages/client/src/init.ts +++ b/packages/client/src/init.ts @@ -3,6 +3,7 @@ */ import '@/style.scss'; +import '@/icons.css'; //#region account indexedDB migration import { set } from '@/scripts/idb-proxy';