Skip to content

Commit

Permalink
FFE-226 Using left, right instead of start, end for text-align
Browse files Browse the repository at this point in the history
FFE-226 Bumping version to 5.0.2 and updating changelog
  • Loading branch information
Magnus Jerre committed Aug 24, 2017
1 parent 15f2e5a commit 17bd9a3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## v.5.0.2
* Using left, right instead of start, end for text-align property to support IE.

## v.5.0.1
* Support both versions 9 and 10 of `ffe-core`

Expand Down
4 changes: 2 additions & 2 deletions less/ffe-grid.less
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@

&--start {
justify-content: flex-start;
text-align: start;
text-align: left;
}

&--center {
Expand All @@ -123,7 +123,7 @@

&--end {
justify-content: flex-end;
text-align: end;
text-align: right;
}

&--top {
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": "ffe-grid",
"version": "5.0.1",
"version": "5.0.2",
"description": "A grid component for use within the FFE framework",
"scripts": {
"compile": "lessc examples/examples.less examples/examples.css && cp -R node_modules/ffe-core/fonts/ examples/ && echo \"$(date +%T): Updated examples\"",
Expand Down

0 comments on commit 17bd9a3

Please sign in to comment.