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

Commit 1ef9ec3

Browse files
ypislonandrewseguin
authored andcommitted
fix(toast): update style direction to flex-direction (#11169)
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 :)
1 parent 6f5e14e commit 1ef9ec3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/toast/toast.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ md-toast {
2626

2727
.md-toast-content {
2828
display: flex;
29-
direction: row;
29+
flex-direction: row;
3030
align-items: center;
3131

3232
max-height: 7 * $toast-height;

0 commit comments

Comments
 (0)