Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
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
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.

16 changes: 12 additions & 4 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -236,10 +236,18 @@
}
}
}
// 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;

// Fix button position on mobile (so that they don't overlap with text)
.modal-mask .modal-wrapper {
.next, .prev {
top: 220px;
align-items: start;
}

// Make buttons edgy on mobile which looks better
.icon-next, .icon-previous {
border-radius: 0px !important;
}
}
}
</style>
Expand Down