Make mini cart icon RTL on RTL sites in editor (https://github.com/woocommerce/woocommerce-blocks/pull/9707)
* Make mini cart icon RTL on RTL sites in editor * Use BEM convention
This commit is contained in:
parent
4cd22fb705
commit
5a5d5d315a
|
@ -9,3 +9,9 @@
|
|||
.wc-block-editor-mini-cart__drawer-link {
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
|
||||
.wc-block-editor-mini-cart__icon {
|
||||
html[dir="rtl"] & {
|
||||
transform: scaleX(-1);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -20,7 +20,7 @@ const settings: BlockConfiguration = {
|
|||
src: (
|
||||
<Icon
|
||||
icon={ miniCartAlt }
|
||||
className="wc-block-editor-components-block-icon"
|
||||
className="wc-block-editor-components-block-icon wc-block-editor-mini-cart__icon"
|
||||
/>
|
||||
),
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue