@littlemissrobot/sass-mixins
Advanced tools
Comparing version 0.0.5 to 0.0.6
{ | ||
"name": "@littlemissrobot/sass-mixins", | ||
"version": "0.0.5", | ||
"version": "0.0.6", | ||
"description": "Little Miss Robot sass mixins library that helps execute reusable and complex tasks", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -127,3 +127,3 @@ # Little Miss Robot - Sass mixins | ||
### set-typo($group-name: "paragraph", $style-name: "regular") | ||
### set-typo($keys) | ||
@@ -135,4 +135,4 @@ > This mixin assume you have defined $font-styles and $breakpoints map. Apply a | ||
Parameters: | ||
* **$group-name**: name of the group the style is defined within | ||
* **$style-name**: name of the style defined within the group | ||
* **$keys**: a sass list that represents the hierarchy within the $font-styles | ||
variable until a definition or group of styles is met. | ||
@@ -169,7 +169,7 @@ ```scss | ||
p { | ||
@include set-typo("paragraph", "base"); | ||
@include set-typo("paragraph" "base"); | ||
} | ||
small { | ||
@include set-typo("paragraph", "small"); | ||
@include set-typo("paragraph" "small"); | ||
} | ||
@@ -176,0 +176,0 @@ ``` |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
20633