Skip to content

Commit

Permalink
[helpers] fix typo in flex helper and bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
ArmorDarks committed Feb 3, 2017
1 parent bbf9dcc commit 81a6a08
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 2.4.1

### Fixed
- Fixed typo in flex helper: `.h-flex-y--top` renamed to `.h-flex-y--start`.

## 2.4.0

### Removed
Expand Down
2 changes: 1 addition & 1 deletion helpers/_flex.scss
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
// Cross axis aligment

.#{$prefix}flex-y--stretch#{$postfix} { align-items: stretch !important; } // default for flex, 100% height of container
.#{$prefix}flex-y--top#{$postfix} { align-items: flex-start !important; }
.#{$prefix}flex-y--start#{$postfix} { align-items: flex-start !important; }
.#{$prefix}flex-y--center#{$postfix} { align-items: center !important; }
.#{$prefix}flex-y--end#{$postfix} { align-items: flex-end !important; }
.#{$prefix}flex-y--baseline#{$postfix} { align-items: baseline !important; } // aligns by text baseline
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ekzo",
"version": "2.4.0",
"version": "2.4.1",
"description": "Sass framework for rapid and painless development",
"homepage": "https://github.com/ArmorDarks/ekzo",
"author": "Serj Lavrin (https://github.com/ArmorDarks)",
Expand Down

0 comments on commit 81a6a08

Please sign in to comment.