Installing the Dashing Component

Install bower package

If you use Bower, the dashing package can be installed with the following command:

bower install dashing --save

Install npm package

If you use npm, the dashing package can be installed with the following command:

npm install dashing-framework --save

Setting up your styles

Import Dashing and custom styles

Copy & paste this code into your main scss file. Note that the relative path may differ.

Note: You will need to create a folder and file for each custom style file (theme, base, layout, module and state).

// Import dashing components
@import "/bower_components/dashing/sass/vendor/normalize";
@import "/bower_components/dashing/sass/base/base";

// Import custom theme file
@import "theme/theme";

// Import dashing components
@import "/bower_components/dashing/sass/modules/modules";

// Import custom style files
@import "base/base";
@import "layout/layout";
@import "modules/modules";
@import "state/state";