Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
make buttons edgy on mobile
Signed-off-by: szaimen <[email protected]>
Signed-off-by: nextcloud-command <[email protected]>
  • Loading branch information
szaimen authored and nextcloud-command committed Apr 9, 2022
commit be525dcecfc6652829b4501f5a725f042a379c1a
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