From 1cb49935242352385f0a55a5ccd0f6780fd3608c Mon Sep 17 00:00:00 2001 From: Alexander Zhukov Date: Mon, 28 May 2018 19:47:48 +0300 Subject: [PATCH] fix(docs): add missing operator (#455) --- docs/articles/rtl.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/articles/rtl.md b/docs/articles/rtl.md index 21dc26e321..4c77d9ea60 100644 --- a/docs/articles/rtl.md +++ b/docs/articles/rtl.md @@ -28,16 +28,16 @@ Default value is `ltr`. To help you add RTL support to your custom components, Nebular provides you with two scss mixins: `nb-lrt` and `nb-rtl`. You can use them to alter values of css properties, which don't support logical values, like paddings, margins, etc. You can pass single property and value as arguments, pass multiple statements as a content of mixin or both. For example: ```scss :host { - nb-ltr(padding-left, 1em); - nb-rtl(padding-right, 1em); + @include nb-ltr(padding-left, 1em); + @include nb-rtl(padding-right, 1em); } ``` ```scss :host { - nb-ltr() { + @include nb-ltr() { padding-left: 1em; }; - nb-rtl() { + @include nb-rtl() { padding-right: 1em; }; }