mirror of
https://github.com/nextcloud/server.git
synced 2026-02-11 14:54:02 -05:00
Fix(core): fix app menu alignment in RTL mode.
Signed-off-by: Faisal Alghamdi <falghamdi125@gmail.com>
This commit is contained in:
parent
b5afb7805c
commit
cccdaa10eb
1 changed files with 6 additions and 0 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in a new issue