craft-css
v1.0.0
Published
CLI that helps you to add Bootstrap CSS and customize it
Maintainers
Readme
Craft CSS
CLI that helps you to add Bootstrap CSS and customize it.
Usage
When your project not already has a full Bootstrap CSS file, run this to add one:
npx craft-css compile --output bootstrap.min.css --fullAdd theme
Choose one of the styles
npx craft-css compile -o variables.min.css -s new-yorkCustom variables
Create a file with custom Sass variables:
// my-vars.scss
$primary: yellow;Then run this:
npx craft-css compile -o variables.min.css -s new-york --import-before my-vars.scssTo override CSS variables, you set a file that should be imported after Bootstrap:
/* my-css-vars.css */
.btn-primary {
--bs-btn-color: blue !important;
}npx craft-css compile -o variables.min.css -s new-york --import-before my-vars.scss --import-after my-css-vars.cssGet help
Run this to see all available options for the compile command:
npx craft-css help compile