Wolox scss bootstrap equalizer.
npm install wolox-equalizer
- Reset the default styles of the browser.
- Contains Wolox standards for normalizing front-end projects.
#### npm
``bash`
npm i wolox-equalizer
#### yarn
`bash`
yarn add wolox-equalizer
Include the equalizer.scss before any file of your CSS/SCSS. You can do it by simply using the import statement on top of your root scss file:
`scss`
@import '~wolox-equalizer/equalizer';
Or you can also do the following trick to simply import it with it's name:
`scss`
@import 'equalizer';
`js`
// webpack.config.js
{
loader: 'sass-loader',
options: {
includePaths: ['node_modules/wolox-equalizer']
}
}
All the text have the base style:
`css`
color: #717171;
font-family: sans-serif;
font-size: 14px;
line-height: 14px;`
And input placeholders:css``
color: #999
This project is maintained by Francisco Iglesias & Braian Dickson and it was written by Wolox.