From ea6b325432ee78479035102e187185989117143c Mon Sep 17 00:00:00 2001 From: Jon Capa Date: Fri, 16 Dec 2016 16:58:29 -0500 Subject: [PATCH] Fix offscreen mixin for RTL context --- d2l-offscreen-shared-styles.html | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/d2l-offscreen-shared-styles.html b/d2l-offscreen-shared-styles.html index 4a44d4b..825aac9 100644 --- a/d2l-offscreen-shared-styles.html +++ b/d2l-offscreen-shared-styles.html @@ -12,6 +12,12 @@ white-space: nowrap; }; } + :host-context([dir="rtl"]) { + --d2l-offscreen: { + left: 0; + right: -10000px; + }; + }