postcss-inline-rtl
postcss-inline-rtl copied to clipboard
PostCSS plugin to inline the minimal amount of RTL CSS you need.
I have the following SCSS: ```scss .greyBar { background-color: grey; animation: revealAnimation 2s linear; animation-fill-mode: forwards; } @keyframes revealAnimation { to { width: 0px; margin-left: 150px; } } ``` This...
One of the examples in the readme actually demonstrates a bug: ``` css /* Edge case (cancelling LTR/RTL values) */ .class { border-left: 10px; border: none; /* Notice this doesn't...