data endpoint for entity 90008 (aka. a website)
0
fork

Configure Feed

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

feat: optimize fonts

dusk 7ebd3e6b 261adb7b

+18 -6
bun.lockb

This is a binary file and will not be displayed.

-2
package.json
··· 40 40 }, 41 41 "type": "module", 42 42 "dependencies": { 43 - "@fontsource/fusion-pixel-10px-monospaced-sc": "^5.0.1", 44 - "@fontsource/fusion-pixel-10px-proportional-sc": "^5.0.1", 45 43 "@neodrag/svelte": "^2.3.1", 46 44 "@skyware/bot": "^0.3.8", 47 45 "@std/toml": "npm:@jsr/std__toml",
-2
src/routes/+layout.svelte
··· 2 2 import getTitle from '$lib/getTitle'; 3 3 import NavButton from '../components/navButton.svelte'; 4 4 import Tooltip from '../components/tooltip.svelte'; 5 - import '@fontsource/fusion-pixel-10px-monospaced-sc'; 6 - import '@fontsource/fusion-pixel-10px-proportional-sc'; 7 5 import '../styles/app.css'; 8 6 9 7 interface Props {
+16
src/styles/app.css
··· 15 15 font-smoothing: none !important; 16 16 } 17 17 18 + @font-face { 19 + font-family: 'Fusion Pixel 10px Monospaced zh_hans'; 20 + src: url('/fonts/fusion-pixel-sc-monospaced.woff2') format('woff2'); 21 + font-weight: normal; 22 + font-style: normal; 23 + font-display: swap; 24 + } 25 + 26 + @font-face { 27 + font-family: 'Fusion Pixel 10px Proportional zh_hans'; 28 + src: url('/fonts/fusion-pixel-sc-proportional.woff2') format('woff2'); 29 + font-weight: normal; 30 + font-style: normal; 31 + font-display: swap; 32 + } 33 + 18 34 .prose h1::before { 19 35 content: '[ '; 20 36 }
static/fonts/fusion-pixel-sc-monospaced.woff2

This is a binary file and will not be displayed.

static/fonts/fusion-pixel-sc-proportional.woff2

This is a binary file and will not be displayed.

+2 -2
tailwind.config.js
··· 49 49 } 50 50 }, 51 51 fontFamily: { 52 - 'sans-serif': ['"Fusion Pixel 10px Proportional SC", sans-serif'], 53 - monospace: ['"Fusion Pixel 10px Monospaced SC", monospace'], 52 + 'sans-serif': ['"Fusion Pixel 10px Proportional zh_hans", sans-serif'], 53 + monospace: ['"Fusion Pixel 10px Monospaced zh_hans", monospace'], 54 54 } 55 55 }, 56 56 plugins: [