[READ-ONLY] Mirror of https://github.com/probablykasper/k5kit. Utilities for TypeScript and Svelte
0

Configure Feed

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

Move global styles to app.css

Kasper (Jun 26, 2025, 8:55 PM +0200) cd764b54 0112268f

+7 -9
+7
src/app.css
··· 1 1 @import 'tailwindcss'; 2 + 3 + html { 4 + color-scheme: dark; 5 + font-family: 6 + -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 7 + 'Helvetica Neue', sans-serif; 8 + }
-9
src/routes/+layout.svelte
··· 5 5 </script> 6 6 7 7 {@render children()} 8 - 9 - <style> 10 - :global(html) { 11 - color-scheme: dark; 12 - font-family: 13 - -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 14 - 'Helvetica Neue', sans-serif; 15 - } 16 - </style>