0.0.0 • Published 8 years ago

style-one v0.0.0

Weekly downloads
1
License
UNLICENSED
Repository
-
Last release
8 years ago

#Starter-kit for OneSystems Projects

Written by Rashid Shamsudinov (@rash2x) from QnB Team

##About This package allow you use our brand styles to your project. You can change theme to yourself with update skin variables, or rewrite bootstrap code. With this code, you can use bootstrap options and mixins

##Install

npm install GIT_LINK

In the module part in your webpack.config.js, insert next loader:

module: {
    loaders: [{
        test: /\.scss$/,
        loader: 'style!css!postcss!sass!sass-resources'
    }]
},

After include sassResources parameter in your webpack.config.js, like this

sassResources: [
   '~bootstrap/scss/_variables.scss',
   '~bootstrap/scss/mixins/**/*.scss',
   './core/_variables.scss',
   'YOUR_PATH_TO_SKIN_VARIABLES.scss'
]

Be carefully bro ;)