Skip to content

Instantly share code, notes, and snippets.

@dropways
Last active March 13, 2024 08:11
Show Gist options
  • Save dropways/142acc64d45d14c8891c656d6149caf2 to your computer and use it in GitHub Desktop.
Save dropways/142acc64d45d14c8891c656d6149caf2 to your computer and use it in GitHub Desktop.
RTL Layout Sass/Scss Mixin

RTL Layout Sass/Scss Mixin

We can use that selector to target styles if the HTML element has the dir attribute defined.

@mixin rtl {
    [dir="rtl"] & {
        @content;
    }
}

.Component {
    // ltr styles
    float: left;
    margin-right: 1rem;

    // rtl styles
    // change directions and reverse the margin
    @include rtl {
        float: right;
        margin-right: auto;
        margin-left: 1rem;
     }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment