diff --git a/components/dashicon/index.js b/components/dashicon/index.js index 15c64ac6609dad..83482391b84966 100644 --- a/components/dashicon/index.js +++ b/components/dashicon/index.js @@ -5,6 +5,11 @@ DO NOT EDIT THAT FILE! EDIT index-header.jsx and index-footer.jsx instead OR if you're looking to change now SVGs get output, you'll need to edit strings in the Gruntfile :) !!! */ +/** + * Internal dependencies + */ +import './style.scss'; + /** * External dependencies */ diff --git a/components/dashicon/style.scss b/components/dashicon/style.scss new file mode 100644 index 00000000000000..6ef9215c8e2f3b --- /dev/null +++ b/components/dashicon/style.scss @@ -0,0 +1,10 @@ +body.rtl .gutenberg .dashicon { + &.dashicons-editor-outdent, + &.dashicons-editor-indent, + &.dashicons-list-view, + &.dashicons-editor-ul { + transform: scaleX(-1); + -ms-filter: fliph; + filter: FlipH; + } +}