Skip to content

Commit

Permalink
Merge pull request #6144 from nextcloud-libraries/fix/app-navigation/rtl
Browse files Browse the repository at this point in the history
fix(NcAppNavigation): RTL support
  • Loading branch information
susnux authored Oct 20, 2024
2 parents 8b77113 + 2dbed4e commit 1eabe7e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/NcAppNavigation/NcAppNavigation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ export default {
backdrop-filter: var(--filter-background-blur, none);
&--close {
margin-left: calc(-1 * min($navigation-width, var(--app-navigation-max-width)));
margin-inline-start: calc(-1 * min($navigation-width, var(--app-navigation-max-width)));
}
&__search {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ export default {
.app-navigation-toggle-wrapper {
position: absolute;
top: var(--app-navigation-padding);
right: calc(0px - var(--app-navigation-padding));
margin-right: calc(-1 * var(--default-clickable-area));
inset-inline-end: calc(0px - var(--app-navigation-padding));
margin-inline-end: calc(-1 * var(--default-clickable-area));
}
button.app-navigation-toggle {
Expand Down

0 comments on commit 1eabe7e

Please sign in to comment.