From 20c9d3fb5400e868bce3e53df2c0aa22be14e23e Mon Sep 17 00:00:00 2001 From: Matt Strapp Date: Wed, 24 Apr 2024 13:43:24 -0500 Subject: Nothing Signed-off-by: Matt Strapp --- clients/www/README.md | 4 ++++ clients/www/package.json | 2 ++ clients/www/src/app.postcss | 7 ++++--- clients/www/src/routes/+layout.svelte | 5 ++++- clients/www/src/routes/+page.svelte | 2 ++ clients/www/static/font/ZeldaOracles.woff2 | Bin 6460 -> 0 bytes clients/www/static/font/zelda-oracles.woff2 | Bin 0 -> 5436 bytes 7 files changed, 16 insertions(+), 4 deletions(-) delete mode 100644 clients/www/static/font/ZeldaOracles.woff2 create mode 100644 clients/www/static/font/zelda-oracles.woff2 (limited to 'clients') diff --git a/clients/www/README.md b/clients/www/README.md index 5c91169..9e4ad05 100644 --- a/clients/www/README.md +++ b/clients/www/README.md @@ -36,3 +36,7 @@ npm run build You can preview the production build with `npm run preview`. > To deploy your app, you may need to install an [adapter](https://kit.svelte.dev/docs/adapters) for your target environment. + +# Acknowledgements + +This project utilizes the FontStruction [Zelda Oracles](https://fontstruct.com/fontstructions/show/1984652) by “aztecwarrior28” is licensed under a [Creative Commons Attribution Share Alike license](http://creativecommons.org/licenses/by-sa/3.0/). diff --git a/clients/www/package.json b/clients/www/package.json index 0a6dda1..a4e914b 100644 --- a/clients/www/package.json +++ b/clients/www/package.json @@ -29,11 +29,13 @@ "eslint": "^9.1.1", "eslint-config-prettier": "^9.1.0", "eslint-plugin-svelte": "^2.38.0", + "iconify-icon": "^2.1.0", "postcss": "8.4.38", "prettier": "^3.2.5", "prettier-plugin-svelte": "^3.2.3", "svelte": "^4.2.15", "svelte-check": "^3.6.9", + "svelte-persisted-store": "^0.9.2", "tailwindcss": "3.4.3", "tslib": "^2.6.2", "typescript": "^5.4.5", diff --git a/clients/www/src/app.postcss b/clients/www/src/app.postcss index a7f6f88..b09047c 100644 --- a/clients/www/src/app.postcss +++ b/clients/www/src/app.postcss @@ -4,14 +4,15 @@ @tailwind variants; @font-face { - font-family: "Zelda Oracle"; - src: url("/font/ZeldaOracles.woff2") format("woff2"); + font-family: "Zelda Oracles"; + src: url("/font/zelda-oracles.woff2") format("woff2"); } + html, body { @apply h-full overflow-hidden; } :root [data-theme="wintry"] { - --theme-font-family-base: "Zelda Oracle"; + --theme-font-family-base: "Zelda Oracles"; } \ No newline at end of file diff --git a/clients/www/src/routes/+layout.svelte b/clients/www/src/routes/+layout.svelte index a651da6..a80d9aa 100644 --- a/clients/www/src/routes/+layout.svelte +++ b/clients/www/src/routes/+layout.svelte @@ -1,4 +1,5 @@