rtl Addon

March 22, 2018 ยท View on GitHub

Flips all your styles to support right-to-left styling.

Example:

nano.put('.foo', {
    textAlign: 'left',
    marginLeft: '100px'
});

Result:

.foo {
    text-align: right;
    margin-right: 100px;
}

Installation

Simply install rtl addon.

Read more about the Addon Installation.