From 6d7ba65faf576ee4ed095f3d0c41775b21e498de Mon Sep 17 00:00:00 2001
From: Shlomo <78599753+ShlomoCode@users.noreply.github.com>
Date: Fri, 9 Feb 2024 12:04:02 +0200
Subject: [PATCH] fix: shell direction (#2980)

---
 frontend/src/components/Shell.vue | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/frontend/src/components/Shell.vue b/frontend/src/components/Shell.vue
index 844c496f..4da32041 100644
--- a/frontend/src/components/Shell.vue
+++ b/frontend/src/components/Shell.vue
@@ -2,7 +2,7 @@
   <div
     class="shell"
     :class="{ ['shell--hidden']: !showShell }"
-    :style="{ height: `${this.shellHeight}em` }"
+    :style="{ height: `${this.shellHeight}em`, direction: 'ltr' }"
   >
     <div
       @pointerdown="startDrag()"