Skip to content

Commit

Permalink
v0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
drublic committed Mar 6, 2014
1 parent dc19243 commit 43c2d8c
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 7 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,7 @@

### HEAD

### 0.8.0 - 05.03.2014
* Add better example for multiple colored gradient
* Rename tests folder to `test`
* Add x-baseline mixin
Expand Down
2 changes: 1 addition & 1 deletion bower.json
@@ -1,6 +1,6 @@
{
"name": "sass-mixins",
"version": "0.7.1",
"version": "0.8.0",
"main": "mixins.scss",
"author": "Hans Christian Reinl",
"ignore": [
Expand Down
14 changes: 12 additions & 2 deletions mixins.scss
@@ -1,4 +1,4 @@
/*! sass-mixins - v0.7.1 - 2014-03-06 *//**
/*! sass-mixins - v0.8.0 - 2014-03-06 *//**
* @description
* Generates keyframe animations
*
Expand Down Expand Up @@ -461,7 +461,17 @@
*
* @example
* .selector {
* @include x-multiple-colored-gradient(( "top", #aaa 0%, #bbb 50%, #ccc 100% ));
* @include x-multiple-colored-gradient((
* "top",
* #f22 0%,
* #f2f 15%,
* #22f 30%,
* #2ff 45%,
* #2f2 60%,
* #2f2 75%,
* #ff2 90%,
* #f22 100%
* ));
* }
*
* Note: This mixis does not define a fallback-color for your background as it
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -2,7 +2,7 @@
"name": "sass-mixins",
"title": "Sass-Mixins",
"description": "Some Sass-Mixins to use in your project",
"version": "0.7.1",
"version": "0.8.0",
"homepage": "https://github.com/drublic/Sass-Mixins",
"author": {
"name": "Hans Christian Reinl",
Expand Down
16 changes: 13 additions & 3 deletions test/css/main.css
@@ -1,6 +1,6 @@
/*! sass-mixins - v0.7.1 - 2014-03-06 */
/*! sass-mixins - v0.8.0 - 2014-03-06 */
@charset "UTF-8";
/*! sass-mixins - v0.7.1 - 2014-03-06 */
/*! sass-mixins - v0.8.0 - 2014-03-06 */
/**
* @description
* Generates keyframe animations
Expand Down Expand Up @@ -237,7 +237,17 @@
*
* @example
* .selector {
* @include x-multiple-colored-gradient(( "top", #aaa 0%, #bbb 50%, #ccc 100% ));
* @include x-multiple-colored-gradient((
* "top",
* #f22 0%,
* #f2f 15%,
* #22f 30%,
* #2ff 45%,
* #2f2 60%,
* #2f2 75%,
* #ff2 90%,
* #f22 100%
* ));
* }
*
* Note: This mixis does not define a fallback-color for your background as it
Expand Down

0 comments on commit 43c2d8c

Please sign in to comment.