Sample app #563
-
Im new to svelte and tailwind. Is there a demo app? I read the directions for a new build, got one going. But I cant seem to get the styling in properly. Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Hi @danrald The documentation site (this repo) technically serves as a demo app, it's built with Skeleton. Though the library and docs are part of the same SvelteKit project, so paths will be relative rather than referring to the package in node_modules. Additionally we're doing some funky stuff with the styles to support all the themes and theme switching. So it may be useful for everything but styles. We also have written guides for creating a simple project per each of the three supported frameworks. These are step-by-step guides that should guide you through most of the process: Finally, we have a CLI tool in development for SvelteKit projects that will soon automatically scaffold a project for you with the latest dependencies in place. We're leaning into this instead maintaining separate demo apps per each framework: There's three common problems we often see related to styling for new users:
If none of this helps let me know and I'd be glad to troubleshoot further. I'm online on Discord right now (@endigo9740) if you want to reach out in our #support channel |
Beta Was this translation helpful? Give feedback.
Hi @danrald The documentation site (this repo) technically serves as a demo app, it's built with Skeleton. Though the library and docs are part of the same SvelteKit project, so paths will be relative rather than referring to the package in node_modules. Additionally we're doing some funky stuff with the styles to support all the themes and theme switching. So it may be useful for everything but styles.
We also have written guides for creating a simple project per each of the three supported frameworks. These are step-by-step guides that should guide you through most of the process:
https://www.skeleton.dev/guides/frameworks
Finally, we have a CLI tool in development for SvelteKit project…