Skip to content

Commit

Permalink
fix: view options position
Browse files Browse the repository at this point in the history
  • Loading branch information
LukasHirt committed Jul 9, 2021
1 parent 45ab630 commit be18374
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions changelog/unreleased/bugfix-view-options-position
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Bugfix: align view options to the right

We've fixed the position of the view options button which would appear in any screen where actions are missing on the left.

https://github.com/owncloud/web/pull/5493
4 changes: 2 additions & 2 deletions packages/web-app-files/src/components/AppBar/AppBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<div class="files-app-bar-actions">
<div
v-if="showActions || selectedFiles.length > 0 || isTrashbinRoute"
class="uk-flex-1 uk-flex uk-flex-middle"
class="uk-flex-1 uk-flex uk-flex-start"
>
<template v-if="showActions && areDefaultActionsVisible">
<oc-button
Expand Down Expand Up @@ -556,7 +556,7 @@ export default {
align-items: center;
display: flex;
gap: var(--oc-space-small);
justify-content: space-between;
justify-content: flex-end;
padding: var(--oc-space-small);
}
}
Expand Down

0 comments on commit be18374

Please sign in to comment.