@unchain/style
v0.0.18
Published
Unchain-style based on the Bootstrap framework, customized to the unchain styleguide.
Downloads
9
Readme
Unchain-style
The unchain styleguide, published for ease-of-use installing.
Install instructions
- Type
npm install @unchain/style --save
in the root of your project.
Using angular-cli.json
- Add
"../node_modules/@unchain/style/dist/unchain-style.css"
to the"styles": [...],
array in angular-cli.json.
Using index.html
- Add
<link rel="stylesheet" type="text/css" href="../node_modules/@unchain/style/dist/unchain-style.css">
to your<head>...</head>
in your index.html.
Usage
This package styles basic HTML semantic elements (e.g. button, nav, etc.) with specific classes for different styles. Check the index.html for examples.
Publishing new versions
- Run
npm install
to install the sass compiler. - Run
npm run sass
to compile and minify the scss in a single css file. - Increment the package.json
"version": "0.0.X"
by one. - Run
npm publish
.