0.0.5 • Published 2 years ago

elr-scss-lists v0.0.5

Weekly downloads
4
License
SEE LICENSE IN LI...
Repository
github
Last release
2 years ago

elr-scss-lists

License: MIT npm

a library of sass mixins

Installation

Download node at nodejs.org and install it, if you haven't already.

npm install elr-scss-lists --save
yarn add elr-scss-lists
.unstyled-list {
  @include elr-unstyled-list;
}
.border-list {
  @include elr-border-list(
    $config: (
      border-color: #333,
    )
  );
}
.inline-list {
  @include elr-inline-list;
}
.bullet-list {
  @include elr-bullet-list(
    $config: (
      icon: "\2705",
      icon-font-size: 70%,
    )
  );
}
.icon-list {
  @include elr-icon-list(
    $config: (
      icon-color: #1976d2,
      icon-font-size: 70%,
    )
  );
}

License

SEE LICENSE IN LICENSE.md