@pentacle/lottecss
v1.0.22
Published
out of the box design and styling for your semantic markup
Readme
lottecss
- out of the box design and styling for your app
- no need to apply classes
- use with your semantic HTML/JSX markup
- consistent styling for your elements
- minimal (familiar) utility classes so you don't need Tailwind
Live demo & docs: https://lottecss.com
Installation
yarn add @pentacle/lottecss
# or
npm install @pentacle/lottecssDevelopment & Publishing
Update and Publish Workflow
Make your changes to the CSS files in
src/css/Build the distribution file:
yarn build # or npm run buildUpdate the version in package.json:
npm version patch # for bug fixes (1.0.13 → 1.0.14) npm version minor # for new features (1.0.13 → 1.1.0) npm version major # for breaking changes (1.0.13 → 2.0.0)Commit and push changes:
git add . git commit -m "1.0.14" # use the new version number git push origin mainPublish to npm:
npm publish # or if using yarn yarn npm publish
