Skip to content

Commit

Permalink
Fix buttons on new album modal window
Browse files Browse the repository at this point in the history
Signed-off-by: julia.kirschenheuter <julia.kirschenheuter@nextcloud.com>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
  • Loading branch information
JuliaKirschenheuter authored and nextcloud-command committed Oct 17, 2023
1 parent 0048469 commit b3a3df5
Show file tree
Hide file tree
Showing 13 changed files with 27 additions and 18 deletions.
4 changes: 2 additions & 2 deletions js/photos-main.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/photos-main.js.map

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions js/photos-public.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/photos-public.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions js/photos-src_components_Albums_AlbumForm_vue.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/photos-src_components_Albums_AlbumForm_vue.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions js/photos-src_views_AlbumContent_vue.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/photos-src_views_AlbumContent_vue.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions js/photos-src_views_Timeline_vue.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/photos-src_views_Timeline_vue.js.map

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions src/components/Albums/AlbumForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -294,6 +294,7 @@ export default {
.form-buttons {
display: flex;
justify-content: space-between;
flex-direction: column;
.left-buttons, .right-buttons {
display: flex;
Expand All @@ -312,4 +313,12 @@ export default {
.left-buttons {
flex-grow: 1;
}
@media only screen and (max-width: 1020px) {
.right-buttons {
justify-content: flex-end;
flex-direction: column;
gap: calc(var(--default-grid-baseline) * 4);
}
}
</style>

0 comments on commit b3a3df5

Please sign in to comment.