diff options
Diffstat (limited to 'core/src/components/AppMenuEntry.vue')
-rw-r--r-- | core/src/components/AppMenuEntry.vue | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/core/src/components/AppMenuEntry.vue b/core/src/components/AppMenuEntry.vue index 9ea999ad1e0..4c5acb7e9c8 100644 --- a/core/src/components/AppMenuEntry.vue +++ b/core/src/components/AppMenuEntry.vue @@ -86,6 +86,9 @@ watch(() => props.app.name, calculateSize) overflow: hidden; letter-spacing: -0.5px; } + body[dir=rtl] &__label { + transform: translateX(50%) !important; + } &__icon { font-size: var(--app-menu-entry-font-size); @@ -114,6 +117,9 @@ watch(() => props.app.name, calculateSize) transition: all var(--animation-quick) ease-in-out; opacity: 1; } + body[dir=rtl] &::before { + transform: translateX(50%) !important; + } } &__icon, |