Skip to content

Commit

Permalink
Replace horizontal scrolling with vertical scrolling on small screens…
Browse files Browse the repository at this point in the history
… in app settings navigation

Signed-off-by: julia.kirschenheuter <[email protected]>
  • Loading branch information
JuliaKirschenheuter committed Nov 16, 2023
1 parent 5db6b10 commit 57295a6
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/components/NcAppSettingsDialog/NcAppSettingsDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -469,4 +469,14 @@ export default {
}
}

@media only screen and (max-width: 320px) {
.navigation-list {
&--collapsed {
flex-direction: column;
max-height: 100px;
min-width: 100%;
}
}
}

</style>

0 comments on commit 57295a6

Please sign in to comment.