1.2.1 โ€ข Published 1 year ago

re-csset v1.2.1

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

The RE-CSSET Reset ๐ŸคŒ

An updated CSS Reset wich overrides the default browser styles

This makes styling way easier and cross-browser by default ๐Ÿ‘

How to Install ๐Ÿ’…

With NPM:

npm install re-csset

or

npm i re-csset

How to use it ๐Ÿ’…

We want a reset to be a base where to work on

Therefore, we have to APPLY RE-CSSET BEFORE ANY OTHER STYLE ๐Ÿ‘ˆ

Otherwise, the reset will override your project styles

We strongly recommend to use a modern file structure for styling

This will make it easier to avoid specificity problems and bugs in general

Importing ๐Ÿ’…

In React:

import "re-csset/reset.css"

In SASS

@useย '../node_modules/re-csset/reset.css'

In CSS

@importย '../node_modules/re-csset/reset.css'

In HTML

<link rel="stylesheet"href="./node_modules/re-csset/reset.css">