Skip to content

Commit

Permalink
fix(toast): update style direction to flex-direction (angular#11169)
Browse files Browse the repository at this point in the history
In the component md-toast the property "direction" is set to "row". It seems like it's intended to use "flex-direction", as "row" is not a valid value for the property direction, which should indicate the direction of text.

This doesn't change the behaviour of md-toast, just cleaning up a small typo :)
  • Loading branch information
ypislon authored and andrewseguin committed Mar 23, 2018
1 parent 6f5e14e commit 1ef9ec3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/toast/toast.scss
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ md-toast {

.md-toast-content {
display: flex;
direction: row;
flex-direction: row;
align-items: center;

max-height: 7 * $toast-height;
Expand Down

0 comments on commit 1ef9ec3

Please sign in to comment.