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;
}
Simply install rtl
addon.
Read more about the Addon Installation.