ribs-reset-css
Version:
A reset css can be used in css or sass/scss
25 lines (19 loc) • 500 B
Markdown
# ribs-reset-css
A reset Css which can be used in css or sass.
## How to install it
In your command line of the project type this :
```BASH
npm install ribs-reset-css
# or
yarn add ribs-reset-css
```
## Use it with css
In the head part of your website add this before all your css links :
```HTML
<link rel="stylesheet" href="node_modules/ribs-reset-css/style.min.css">
```
## Use it with scss or sass
In the first line of your global style put this :
```HTML
@import "~ribs-reset-css";
```