Skip to content

Commit

Permalink
Update to 1.5.1
Browse files Browse the repository at this point in the history
### Changed
- Fix padding multiplier warning being incorrectly triggered.
- Update Readme
  • Loading branch information
craigmdennis committed May 21, 2015
1 parent 621bd2c commit 93f683d
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [1.5.1] - 2015-05-21
### Changed
- Fix padding multiplier warning being incorrectly triggered.

## [1.5.0] - 2015-05-10
### Added
- Allow heights to be smaller than the specified font size. The value is still rounded to the nearest baseline multiple.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SASS Height Mixins
Mixins to help calculate heights, line-heights and padding.
# SASS Height
Mixin to help calculate heights, line-heights and padding.

## Installation

Expand Down
4 changes: 2 additions & 2 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "equal-height-sass",
"version": "1.5.0",
"version": "1.5.1",
"homepage": "https://github.com/craigmdennis/height",
"authors": [
"Craig Dennis <[email protected]>"
],
"description": "Mixins to help calculate heights, line-heights and padding",
"description": "Mixin to help calculate heights, line-heights and padding",
"main": "application.scss",
"keywords": [
"sass",
Expand Down
2 changes: 1 addition & 1 deletion mixins/_mixin_height.scss
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@
}

// Deprecated
@if $sh-paddingmultiplier == 'all' {
@else if $sh-paddingmultiplier == 'all' {
@warn 'Using \'all\' for padding is deprecated. Use a multiplier number instead.';
padding-left: $vpadding;
padding-right: $vpadding;
Expand Down

0 comments on commit 93f683d

Please sign in to comment.