Getting Started
Install the package using pnpm (or npm, yarn)
pnpm i -D @steeze-ui/components
Import Base Styles
If you want a solid foundation of styles that can be easily overriden using CSS Custom Components, then import the base styles with:
<script>
import "@steeze-ui/components/base.css"
</script>
Check out the Styling Guide to learn more about how styling works.
Optional: Import Preflight
To solve browser inconsistencies you can directly import modern-normalize from this package:
<script>
import "@steeze-ui/components/normalize.css"
</script>
MIT Licensed