We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For custom components there’s a fair bit of set up to do. A script could make this easier.
For instance, you could run npm run create-component card which would:
npm run create-component card
_card.scss
.app-card { }
@import “card”
application.scss
views/components/
appCard
Helpful?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
For custom components there’s a fair bit of set up to do. A script could make this easier.
For instance, you could run
npm run create-component card
which would:_card.scss
file for your CSS to go in - this could contain a comment and a.app-card { }
line to get you started@import “card”
line inapplication.scss
views/components/
containing a template and a nunjucks macro namedappCard
.Helpful?
The text was updated successfully, but these errors were encountered: