From bd34b55897ab28b733fba95a1dcfb36fb681327d Mon Sep 17 00:00:00 2001 From: pterrien Date: Sat, 7 Oct 2017 11:53:27 +0200 Subject: [PATCH] correction on flip-* classes According to the .scss, the correct classes are `.mdi-flip-h` and `.mdi-flip-v`, not `.mdi-flip-horizontal` and `.mdi-flip-vertical`: ``` .#{$mdi-css-prefix}-flip-h:before { -webkit-transform: scaleX(-1); transform: scaleX(-1); filter: FlipH; -ms-filter: "FlipH"; } .#{$mdi-css-prefix}-flip-v:before { -webkit-transform: scaleY(-1); transform: scaleY(-1); filter: FlipV; -ms-filter: "FlipV"; } ``` --- site/getting-started.savvy | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/site/getting-started.savvy b/site/getting-started.savvy index d4d5e4335..34fe94697 100644 --- a/site/getting-started.savvy +++ b/site/getting-started.savvy @@ -94,11 +94,11 @@ Use either `.mdi-light` or `.mdi-dark` to set the color of the icon to the defau ``` #### Flip -Icons can be flipped horizontally and/or vertically using the classes `.mdi-flip-horizontal` and `.mdi-flip-vertical`. +Icons can be flipped horizontally and/or vertically using the classes `.mdi-flip-h` and `.mdi-flip-v`. ```html Flip Example -Home -Home +Home +Home ``` #### Rotate