Fix buttons on new album modal window

Signed-off-by: julia.kirschenheuter <julia.kirschenheuter@nextcloud.com>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
This commit is contained in:
julia.kirschenheuter 2023-10-12 16:55:50 +02:00 committed by nextcloud-command
parent 00484696b5
commit b3a3df5470
13 changed files with 9 additions and 0 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -294,6 +294,7 @@ export default {
.form-buttons {
display: flex;
justify-content: space-between;
flex-direction: column;
.left-buttons, .right-buttons {
display: flex;
@ -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>