Skip to content

Commit

Permalink
Merge pull request #2087 from nextcloud/fix/36965-fix-fit-of-buttons-…
Browse files Browse the repository at this point in the history
…on-modal

Fix buttons on new album modal window
  • Loading branch information
JuliaKirschenheuter authored Oct 17, 2023
2 parents 0048469 + b3a3df5 commit cd57354
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 cd57354

Please sign in to comment.