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';