Skip to content

Commit fae7576

Browse files
authored
Merge pull request #1164 from nextcloud/bugfix/1163
fix: Scrolling on mobile and proper alignment of the back button/menubar
2 parents 73614b5 + 49d1473 commit fae7576

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/components/NoteRich.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,6 @@ export default {
197197
.is-mobile:deep(.text-menubar) {
198198
// Avoid overlapping the navigation toggle
199199
margin-left: 44px;
200-
margin-top: 4px;
200+
z-index: 1;
201201
}
202202
</style>

src/components/NotesView.vue

+3
Original file line numberDiff line numberDiff line change
@@ -221,6 +221,8 @@ export default {
221221
<style lang="scss" scoped>
222222
.content-list {
223223
padding: 0 4px;
224+
height: 100%;
225+
overflow-y: auto;
224226
}
225227
226228
.content-list__search {
@@ -244,6 +246,7 @@ export default {
244246
245247
.app-content-details {
246248
height: 100%;
249+
overflow: auto;
247250
}
248251
249252
.loading-label {

0 commit comments

Comments
 (0)