Skip to content
This repository has been archived by the owner on Sep 5, 2024. It is now read-only.

Commit

Permalink
fix(layout): use flex-start instead of start
Browse files Browse the repository at this point in the history
Fixes #6402

  Closes #6403
  • Loading branch information
devversion authored and ThomasBurleson committed Dec 21, 2015
1 parent 7735a1b commit c0f5aea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/services/layout/layout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@
.#{$name},
.#{$name}-start-stretch // defaults
{
justify-content : start;
justify-content : flex-start;
align-content : stretch;
align-items: stretch;
}
Expand All @@ -212,7 +212,7 @@
.#{$name}-start-end,
.#{$name}-start-stretch
{
justify-content: start;
justify-content: flex-start;
}

// Main Axis Center
Expand Down

0 comments on commit c0f5aea

Please sign in to comment.