postcss-inline-rtl icon indicating copy to clipboard operation
postcss-inline-rtl copied to clipboard

PostCSS plugin to inline the minimal amount of RTL CSS you need.

Results 2 postcss-inline-rtl issues
Sort by recently updated
recently updated
newest added

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...