A music player that connects to your cloud/distributed storage.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: phosphor icons

+22 -1
+15
_config.ts
··· 64 64 65 65 site.add("/definitions"); 66 66 67 + function phosphor(path: string) { 68 + site.remoteFile( 69 + `styles/vendor/phosphor/${path}`, 70 + import.meta.resolve(`./node_modules/@phosphor-icons/web/src/${path}`), 71 + ); 72 + } 73 + 74 + phosphor("fill/style.css"); 75 + phosphor("fill/Phosphor-Fill.svg"); 76 + phosphor("fill/Phosphor-Fill.ttf"); 77 + phosphor("fill/Phosphor-Fill.woff"); 78 + phosphor("fill/Phosphor-Fill.woff2"); 79 + 80 + // PHOSPHOR ICONS 81 + 67 82 // MISC 68 83 69 84 site.use(sourceMaps());
+1
deno.jsonc
··· 15 15 "@mys/worker-fn": "jsr:@mys/worker-fn@^3.2.1", 16 16 "@okikio/transferables": "jsr:@okikio/transferables@^1.0.2", 17 17 "@orama/orama": "jsr:@orama/orama@^2.0.6", 18 + "@phosphor-icons/web": "npm:@phosphor-icons/web@^2.1.2", 18 19 "@vicary/debounce-microtask": "jsr:@vicary/debounce-microtask@^0.1.8", 19 20 "alien-signals": "npm:alien-signals@^3.0.0", 20 21 "esbuild-plugins-node-modules-polyfill": "npm:esbuild-plugins-node-modules-polyfill@^1.7.1",
+5
deno.lock
··· 43 43 "npm:@atcute/lex-cli@^2.3.1": "2.3.1", 44 44 "npm:@atcute/lexicons@^1.2.2": "1.2.2", 45 45 "npm:@js-temporal/polyfill@~0.5.1": "0.5.1", 46 + "npm:@phosphor-icons/web@^2.1.2": "2.1.2", 46 47 "npm:@tauri-apps/plugin-shell@^2.2.0": "2.3.3", 47 48 "npm:alien-signals@3": "3.0.3", 48 49 "npm:autoprefixer@10.4.21": "10.4.21_postcss@8.5.6", ··· 380 381 "dependencies": [ 381 382 "@optique/core" 382 383 ] 384 + }, 385 + "@phosphor-icons/web@2.1.2": { 386 + "integrity": "sha512-rPAR9o/bEcp4Cw4DEeZHXf+nlGCMNGkNDRizYHM47NLxz9vvEHp/Tt6FMK1NcWadzw/pFDPnRBGi/ofRya958A==" 383 387 }, 384 388 "@redux-devtools/extension@3.3.0_redux@5.0.1": { 385 389 "integrity": "sha512-X34S/rC8S/M1BIrkYD1mJ5f8vlH0BDqxXrs96cvxSBo4FhMdbhU+GUGsmNYov1xjSyLMHgo8NYrUG8bNX7525g==", ··· 1805 1809 "npm:@atcute/lex-cli@^2.3.1", 1806 1810 "npm:@atcute/lexicons@^1.2.2", 1807 1811 "npm:@js-temporal/polyfill@~0.5.1", 1812 + "npm:@phosphor-icons/web@^2.1.2", 1808 1813 "npm:alien-signals@3", 1809 1814 "npm:esbuild-plugins-node-modules-polyfill@^1.7.1", 1810 1815 "npm:fast-average-color@^9.5.0",
+1 -1
src/themes/blur/artwork-controller/element.js
··· 225 225 render({ html }) { 226 226 return html` 227 227 <style> 228 - /*@import "../../../styles/icons/phosphor.css";*/ 228 + @import "../../../styles/vendor/phosphor/fill/style.css"; 229 229 @import "./element.css"; 230 230 </style> 231 231