From 51a66e265268ec3485a36c238bb3b899ab206e79 Mon Sep 17 00:00:00 2001 From: Omar Chehab Date: Thu, 13 Apr 2017 18:37:16 -0400 Subject: [PATCH] Fix: Container direction ltr I am working with an Arabic site. By default, `direction` is `ltr`, however, if `body` is `rtl`, children inherit and become `rtl`. Putting this style will force eruda to be always ltr. --- src/style/style.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/src/style/style.scss b/src/style/style.scss index e55af76..4292a10 100644 --- a/src/style/style.scss +++ b/src/style/style.scss @@ -14,6 +14,7 @@ transform: translateZ(0); font-family: $font-family; font-size: $font-size; + direction: ltr; * { box-sizing: border-box; pointer-events: all;