2.0.4 • Published 5 years ago

@wocss/tools-resets v2.0.4

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

RESETS

Tool

The @wocss/tools-resets module contains mixins that allows reset styles.

Install using npm:

$ npm install @wocss/tools-resets --save

Usage

With a tool like webpack you can import this module writing:

@import '~@wocss/tools-resets';

Mixins

Then you can use these mixins:

reset-list()

Removes any styles that were previously set on a list.

.items {
  @include reset-list();
}

Result:

.items {
  list-style: none;
  padding-left: 0;
}