0.0.3 • Published 3 years ago

@indi/material v0.0.3

Weekly downloads
66
License
MIT
Repository
github
Last release
3 years ago

INDI-Material

This package contains the INDI themed resources for the Material design system.

Screenshot

Installation

npm install @indi/material

Usage

This package supports (recommends) SCSS, but a minified CSS version is available in dist/indi-material.min.css.

// Use default values (recommended)
@use "@indi/material/theme";

// Or with custom configuration
@use "@indi/material/theme" with (
    $primary: blue,
    ...
);

Testing

npm test [-- --watch]

Contributing

Commit and push changes to git remote tagged with the new version.

git add .
git commit -m "new release"
git tag v1.1.0
git push origin master --tags

Publish the package to NPM.

npm version from-git
npm publish