mirror of https://github.com/lxndrblz/anatole.git

Alexander Bilz
14.41.2022 76bec347b4cc5d8d75b8c1d63033f28892b02583
assets/scss/modules/_config.scss
@@ -24,3 +24,17 @@
    @content;
  }
}
$layout-direction: ltr !default;
@mixin ltr {
    @if $layout-direction == ltr {
        @content;
    }
}
@mixin rtl {
    @if $layout-direction == rtl {
        @content;
    }
}