Skip to content

Commit

Permalink
make buttons edgy on mobile
Browse files Browse the repository at this point in the history
Signed-off-by: szaimen <szaimen@e.mail.de>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
  • Loading branch information
szaimen authored and nextcloud-command committed Apr 9, 2022
1 parent 44e9c30 commit be525dc
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 6 deletions.
4 changes: 2 additions & 2 deletions js/firstrunwizard-main.js

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

13 changes: 10 additions & 3 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -236,10 +236,17 @@
}
}
}
// fix button position on mobile (so that they don't overlap with text)
.modal-mask .modal-wrapper .next, .prev {
top: 220px;
align-items: start !important;
.modal-mask .modal-wrapper {
.next, .prev {
top: 220px;
align-items: start;
}
.icon-next, .icon-previous {
border-radius: 0px !important;
}
}
}
</style>
Expand Down

0 comments on commit be525dc

Please sign in to comment.