Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 362 Bytes

rtl.md

File metadata and controls

28 lines (19 loc) · 362 Bytes

rtl Addon

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.